Skip to content

Commit

Permalink
fix for display dvb-t2 system (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
DYefremov committed Oct 21, 2021
1 parent 4a57234 commit e494a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/eparser/enigma/lamedb.py
Expand Up @@ -203,7 +203,7 @@ def parse_services(self, services, transponders):
system = "DVB-S2" if len(tr) > 7 else "DVB-S"
pos = tr[4]
if tr_type is TrType.Terrestrial:
system = T_SYSTEM.get(tr[9], None)
system = T_SYSTEM.get(tr[10], None)
pos = "T"
fec = T_FEC.get(tr[3], None)
elif tr_type is TrType.Cable:
Expand Down

0 comments on commit e494a34

Please sign in to comment.