mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-03-03 10:40:42 +01:00
cleanup
This commit is contained in:
@@ -63,11 +63,11 @@ namespace ChanSort.Api
|
||||
/// <summary>
|
||||
/// Constructor for exiting TV channel
|
||||
/// </summary>
|
||||
public ChannelInfo(SignalSource source, int index, int oldProgNr, string name) : this()
|
||||
public ChannelInfo(SignalSource source, long index, int oldProgNr, string name) : this()
|
||||
{
|
||||
this.SignalSource = source;
|
||||
this.RecordIndex = index;
|
||||
this.RecordOrder = index;
|
||||
this.RecordOrder = (int)index;
|
||||
this.NewProgramNr = -1;
|
||||
this.OldProgramNr = oldProgNr;
|
||||
this.Name = name;
|
||||
|
||||
Reference in New Issue
Block a user