added first draft of Philips "Repair/ChannelList/s2channellib/*.dat" loader.

currently supports:
- read and write of satellite channels (incl. sorted favorites and "locked" flag)
- read-only of digital cable/antenna files (still missing transponder information)
This commit is contained in:
Horst Beham
2020-08-08 13:58:53 +02:00
parent 736ab2eebf
commit 736f385ccd
13 changed files with 878 additions and 44 deletions

View File

@@ -49,8 +49,8 @@ namespace ChanSort.Api
this.Warnings.AppendFormat("Duplicate transponder data record for satellite #{0} with id {1}\r\n", sat?.Id, trans.Id);
return;
}
if (sat != null)
sat.Transponder.Add(trans.Id, trans);
sat?.Transponder.Add(trans.Id, trans);
this.Transponder.Add(trans.Id, trans);
}
#endregion