aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-12-04 21:39:27 +0100
committerBond_009 <bond.009@outlook.com>2019-12-04 21:39:27 +0100
commit5cab79c839d2212ae638db403ec4d7ba0699f9a1 (patch)
tree13194b84cbecbe5eebdd6306197f4a2d5e1fadcf /MediaBrowser.Api/Playback/BaseStreamingService.cs
parentf3ca4631c39e89afa0cc4af3631016c00e47037c (diff)
Clean up Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 4bd729aac..d6f5bb0c0 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -768,7 +768,7 @@ namespace MediaBrowser.Api.Playback
if (mediaSource == null)
{
- var mediaSources = (await MediaSourceManager.GetPlayackMediaSources(LibraryManager.GetItemById(request.Id), null, false, false, cancellationToken).ConfigureAwait(false)).ToList();
+ var mediaSources = (await MediaSourceManager.GetPlaybackMediaSources(LibraryManager.GetItemById(request.Id), null, false, false, cancellationToken).ConfigureAwait(false)).ToList();
mediaSource = string.IsNullOrEmpty(request.MediaSourceId)
? mediaSources[0]