Skip to content

Commit

Permalink
Resolve typo in NimManager regards getTunableReferences
Browse files Browse the repository at this point in the history
Thanks Huevos as this could lead to a GSOD it should be referenceList
not reflist
  • Loading branch information
Littlesat committed Sep 2, 2024
1 parent a9af56c commit c063f74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/python/Components/NimManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,11 +1196,11 @@ def getTunableReferences(self):
for reference in [f"{satellite[0]:04x}" for satellite in self.getSatListForNim(nim.slot)]:
if reference not in referenceList:
referenceList.append(reference)
elif nim.isCompatible("DVB-C") and not nim.isFBCLink() and 'ffff' not in reflist:
elif nim.isCompatible("DVB-C") and not nim.isFBCLink() and 'ffff' not in referenceList:
referenceList.append('ffff')
elif nim.isCompatible("DVB-T") and not nim.isFBCLink() and 'eeee' not in reflist:
elif nim.isCompatible("DVB-T") and not nim.isFBCLink() and 'eeee' not in referenceList:
referenceList.append('eeee')
elif nim.isCompatible("ATSC") and not nim.isFBCLink() and 'dddd' not in reflist:
elif nim.isCompatible("ATSC") and not nim.isFBCLink() and 'dddd' not in referenceList:
referenceList.append('dddd')
return referenceList

Expand Down

0 comments on commit c063f74

Please sign in to comment.