fix channel numbers

This commit is contained in:
Luke Pulverenti
2016-03-23 22:59:44 -04:00
parent 658c13b8e6
commit 32b5ef7b80
2 changed files with 10 additions and 0 deletions

View File

@@ -1845,6 +1845,10 @@ namespace MediaBrowser.Server.Implementations.LiveTv
var dto = tuple.Item1;
var channel = tuple.Item2;
dto.Number = channel.Number;
dto.ChannelType = channel.ChannelType;
dto.ServiceName = GetService(channel).Name;
dto.MediaSources = channel.GetMediaSources(true).ToList();
var channelIdString = channel.Id.ToString("N");