Skip to content

Commit

Permalink
[avswitch] fix condition config.av.edid_override.value == False
Browse files Browse the repository at this point in the history
  • Loading branch information
Captain committed Apr 3, 2018
1 parent 731337b commit d3d2753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Components/AVSwitch.py
Expand Up @@ -139,7 +139,7 @@ def readAvailableModes(self):
self.modes_available = modes.split(' ')

def readPreferredModes(self):
if config.av.edid_override:
if config.av.edid_override.value == False:
try:
f = open("/proc/stb/video/videomode_edid")
modes = f.read()[:-1]
Expand Down

0 comments on commit d3d2753

Please sign in to comment.