mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 11:57:31 +02:00
- added loader for TCL/Thomson Channel_List_*.tar with DtvData.db and satellite.db inside
- fixed text input in "Favorites" column (for lists that only have favorite markers and not individual numbers) - converted source code to use SDK/MSBuild project files (for future migration to .NET 7 or 8)
This commit is contained in:
@@ -181,8 +181,8 @@ left outer join ChanDataTable ac on ac.handle=a.m_channel_no
|
||||
// DVB
|
||||
if (!r.IsDBNull(ixD + 0))
|
||||
{
|
||||
channel.OriginalNetworkId = r.GetInt32(ixD + 0) & 0x1FFF;
|
||||
channel.TransportStreamId = r.GetInt32(ixD + 1) & 0x1FFF;
|
||||
channel.OriginalNetworkId = r.GetInt32(ixD + 0) & 0x7FFF;
|
||||
channel.TransportStreamId = r.GetInt32(ixD + 1) & 0x7FFF;
|
||||
channel.ServiceId = r.GetInt32(ixD + 2) & 0x1FFF;
|
||||
channel.ServiceType = r.GetInt32(ixD + 3) & 0x1FFF;
|
||||
channel.Provider = r.GetString(ixD + 5);
|
||||
|
||||
Reference in New Issue
Block a user