diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-01-19 02:33:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-19 02:33:05 -0500 |
| commit | 55f14fea6a75069f3b7b0d17ce41000d5b18f858 (patch) | |
| tree | b79be781175d924115f7fbe0022a6798ab0e63e1 /Emby.Server.Implementations/Channels | |
| parent | eb2f8c45104f92dc8946faf746fc107bcf27b8c0 (diff) | |
| parent | fe1630aec43fca7b1450659704269e0cc6f3cb40 (diff) | |
Merge pull request #2404 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/Channels')
| -rw-r--r-- | Emby.Server.Implementations/Channels/ChannelManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelManager.cs b/Emby.Server.Implementations/Channels/ChannelManager.cs index f7dc930097..8f03fa7a47 100644 --- a/Emby.Server.Implementations/Channels/ChannelManager.cs +++ b/Emby.Server.Implementations/Channels/ChannelManager.cs @@ -343,7 +343,7 @@ namespace Emby.Server.Implementations.Channels private MediaSourceInfo GetMediaSource(BaseItem item, ChannelMediaInfo info) { - var source = info.ToMediaSource(); + var source = info.ToMediaSource(item.Id); source.RunTimeTicks = source.RunTimeTicks ?? item.RunTimeTicks; |
