diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-05-14 22:16:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-05-14 22:16:57 -0400 |
| commit | 2189851f11e512228d41c6ec5a60b323389d1566 (patch) | |
| tree | e6a226d49615c343ed6a5b72f9042bd15ae3e549 | |
| parent | f64f0603ae9d537059ec1ee786f4f2cdb36eaf59 (diff) | |
add item flyouts
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs index 6aea6fcaa..f60a21987 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs @@ -351,7 +351,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv var item = GetInternalChannel(id); var service = GetService(item); - return await service.GetChannelStreamMediaSources(id, cancellationToken).ConfigureAwait(false); + return await service.GetChannelStreamMediaSources(item.ExternalId, cancellationToken).ConfigureAwait(false); } private ILiveTvService GetService(ILiveTvItem item) |
