fix metadata manager layout

This commit is contained in:
Luke Pulverenti
2015-09-01 15:18:25 -04:00
parent d8c8e57a0b
commit 3d8287bc6e
5 changed files with 36 additions and 2 deletions

View File

@@ -334,6 +334,12 @@ namespace MediaBrowser.Server.Implementations.LiveTv
var service = GetService(item);
var sources = await service.GetChannelStreamMediaSources(item.ExternalId, cancellationToken).ConfigureAwait(false);
if (sources.Count == 0)
{
throw new NotImplementedException();
}
var list = sources.ToList();
foreach (var source in list)