aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-05 15:02:33 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-05 15:02:33 -0400
commitdb315c4e3279a0f7c5fd5507887b32c6436b90af (patch)
treeec0b852762595883dd34f18c8ae22d42133484b4 /Emby.Server.Implementations/LiveTv/LiveTvManager.cs
parent3fe1c25c3ea8d6519aba3b5c3ef0d6a9154413b2 (diff)
update media source methods
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/LiveTvManager.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
index 10aab4054..48c74681f 100644
--- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
+++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
@@ -1957,7 +1957,7 @@ namespace Emby.Server.Implementations.LiveTv
if (dto.MediaSources == null)
{
- dto.MediaSources = recording.GetMediaSources(true).ToList();
+ dto.MediaSources = recording.GetMediaSources(true);
}
if (dto.MediaStreams == null)
@@ -2365,7 +2365,7 @@ namespace Emby.Server.Implementations.LiveTv
if (addMediaSources)
{
- dto.MediaSources = channel.GetMediaSources(true).ToList();
+ dto.MediaSources = channel.GetMediaSources(true);
}
if (addCurrentProgram)