fix for display dvb-t2 system (#50)

This commit is contained in:
DYefremov
2021-10-21 22:50:35 +03:00
parent 4a57234293
commit e494a34bc4

View File

@@ -203,7 +203,7 @@ class LameDbReader:
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: