mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-16 04:12:03 +01:00
- added support for LG 2013 LA series DVB-C/T lists
- fixed LG's LH series channel ordering (requires physical record reordering) - fixed LG's LH3000 2nd program number - disabled LG TV-data cleanup
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
//#define SYMBOL_RATE_ROUNDING
|
||||
//#define STORE_DVBS_CHANNELS_IN_DATABASE
|
||||
//#define STORE_DVBS_CHANNELS_IN_DATABASE
|
||||
//#define TESTING_LM640T_HACK
|
||||
|
||||
using System;
|
||||
@@ -10,7 +9,6 @@ using System.Reflection;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using ChanSort.Api;
|
||||
using DevExpress.XtraEditors;
|
||||
|
||||
namespace ChanSort.Loader.LG
|
||||
{
|
||||
@@ -806,7 +804,9 @@ namespace ChanSort.Loader.LG
|
||||
{
|
||||
this.ReorderChannelData(this.analogBlockOffset + 8, this.actChannelSize, this.analogChannelCount, this.atvChannels.Channels);
|
||||
|
||||
var dvbCt = this.dtvChannels.Channels.Union(this.radioChannels.Channels).ToList();
|
||||
var tv = this.dtvChannels.Channels.OrderBy(c => c.NewProgramNr);
|
||||
var radio = this.radioChannels.Channels.OrderBy(c => c.NewProgramNr);
|
||||
var dvbCt = tv.Union(radio).ToList();
|
||||
this.ReorderChannelData(this.dvbctBlockOffset + 8, this.actChannelSize, this.dvbctChannelCount, dvbCt);
|
||||
}
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user