mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Fix Dolby Vision detection
* Plex renamed "Dolby Vision" to "DoVi" in the display title.
This commit is contained in:
parent
1f7ddd4d01
commit
f08687b960
1 changed files with 1 additions and 1 deletions
|
@ -3187,7 +3187,7 @@ class PmsConnect(object):
|
|||
|
||||
# HDR details got introduced with PMS version 1.25.6.5545
|
||||
if helpers.version_to_tuple(plexpy.CONFIG.PMS_VERSION) >= helpers.version_to_tuple('1.25.6.5545'):
|
||||
if 'Dolby Vision' in extended_display_title:
|
||||
if 'Dolby Vision' in extended_display_title or 'DoVi' in extended_display_title:
|
||||
video_dynamic_range.append('Dolby Vision')
|
||||
if 'HLG' in extended_display_title:
|
||||
video_dynamic_range.append('HLG')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue