Skip to content

Commit

Permalink
multituner: disable howtswitch on FBC tuners
Browse files Browse the repository at this point in the history
As reported from @Ims, it seems there is an issue using FBC DVB-C/T tuner as hotswitch.
  • Loading branch information
athoik authored and teamblue-e2 committed Mar 14, 2019
1 parent dd486fa commit fe5ab3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Components/NimManager.py
Expand Up @@ -518,7 +518,7 @@ def __init__(self, slot, type, description, has_outputs = True, internally_conne
types.remove("DVB-S")
if len(types) > 1:
self.multi_type = {}
self.hotswitchable = not os.path.exists("/proc/stb/frontend/%d/mode" % self.frontend_id)
self.hotswitchable = not (os.path.exists("/proc/stb/frontend/%d/mode" % self.frontend_id) or self.isFBCTuner())
for type in types:
self.multi_type[str(types.index(type))] = type

Expand Down

0 comments on commit fe5ab3d

Please sign in to comment.