diff options
Diffstat (limited to 'lib/python/Components/NimManager.py')
| -rw-r--r-- | lib/python/Components/NimManager.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 5920166d..ec7d46fe 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -105,6 +105,11 @@ class SecConfigure: used_nim_slots = [ ] for slot in nim_slots: + if slot.type is not None: + used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False)) + eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) + + for slot in nim_slots: x = slot.slot nim = slot.config if slot.isCompatible("DVB-S"): @@ -119,11 +124,6 @@ class SecConfigure: self.setSatposDepends(sec, x, int(nim.satposDependsTo.value)) self.satposdepends[int(nim.satposDependsTo.value)]=x - if slot.type is not None: - used_nim_slots.append((slot.slot, slot.description, nim.configMode.value != "nothing" and True or False)) - - eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) - for slot in nim_slots: x = slot.slot nim = slot.config |
