From: Felix Domke Date: Mon, 27 Nov 2006 01:03:23 +0000 (+0000) Subject: default to 'complete' scan on DVB-C until problems with invalid NITs are fixed -... X-Git-Tag: 2.6.0~2664 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/dc6d1cf177e2d72829720075f236d8eef990fd34 default to 'complete' scan on DVB-C until problems with invalid NITs are fixed - better slow than not working --- diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 18c09b6e..5140406d 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -421,7 +421,7 @@ class NimManager: return self.cablesList[0] def getCableTrustNit(self, nim): - return (config.Nims[nim].cabletype.value == "quick") + return config.Nims[nim].cabletype.value == "quick" def getTerrestrialDescription(self, nim): return self.terrestrialsList[config.Nims[nim].terrestrial.index][0] @@ -794,7 +794,7 @@ def InitNimManager(nimmgr): nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100)) elif slot.nimType == nimmgr.nimType["DVB-C"]: - nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))]) + nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))], default = "complete") elif slot.nimType == nimmgr.nimType["DVB-T"]: list = [] n = 0