diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-27 15:26:37 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-27 15:26:37 +0000 |
| commit | f5d5b50d09ff212f71f95e21ce29aa147dc16925 (patch) | |
| tree | df4808edaee52128663d558c628f4dd5f376eb9f /lib/python/Components | |
| parent | d865ea1718bdd279806fcc70f4326ef9e304b1ea (diff) | |
| download | enigma2-f5d5b50d09ff212f71f95e21ce29aa147dc16925.tar.gz enigma2-f5d5b50d09ff212f71f95e21ce29aa147dc16925.zip | |
use frontend type infomation in /proc/nim_sockets to detect if a frontend
can handle dvb-s2 instead of do a string compare
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/NimManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 1d8e354c..bf718fd0 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -123,7 +123,7 @@ class SecConfigure: 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)) + used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False, slot.isCompatible("DVB-S2"))) eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) for slot in nim_slots: |
