From f08687b960b2e0f302655c50268cc2f54b6d207d Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 12 May 2022 13:10:57 -0700 Subject: [PATCH] Fix Dolby Vision detection * Plex renamed "Dolby Vision" to "DoVi" in the display title. --- plexpy/pmsconnect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/pmsconnect.py b/plexpy/pmsconnect.py index a993f6af..de1f88ef 100644 --- a/plexpy/pmsconnect.py +++ b/plexpy/pmsconnect.py @@ -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')