mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 17:27:38 +02:00
Various changes and refactorings to integrate the suggested changes from pull-request https://github.com/PredatH0r/ChanSort/pull/358 to handle the distinction between IP-antenna, IP-cable, IP-sat and DVB-T, DVB-C, DVB-S for Panasonic TVs.
- SignalSource.IP is now treated as a broadcast system (distinguishing Analog/Dvb/Ip) and no longer a broadcast medium (like antenna/cable/sat). - SignalSource.Digital was renamed to DVB
This commit is contained in:
@@ -261,7 +261,7 @@ class Serializer : SerializerBase
|
||||
if (!this.channelsById.TryGetValue(id, out var c))
|
||||
return;
|
||||
c.ServiceId = int.Parse(a["Sid"].InnerText);
|
||||
c.SignalSource |= SignalSource.Digital;
|
||||
c.SignalSource |= SignalSource.Dvb;
|
||||
|
||||
var transponderId = int.Parse(a["TunerId"].InnerText);
|
||||
var t = DataRoot.Transponder.TryGet(transponderId);
|
||||
|
||||
Reference in New Issue
Block a user