diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-01-13 00:41:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-13 00:41:52 +0900 |
| commit | d217f1614e1fb93d1549ff4b7fad7bfbdcba6204 (patch) | |
| tree | e7467ce2f69d8b69c97476a3af0fdd227572f34e /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | a272638a84f53dcb21161d0d5a31177f8ea1ff03 (diff) | |
| parent | 2a09f05ff35d7ae9ab4bb0d216a93698814b6821 (diff) | |
Merge pull request #2096 from Bond-009/embytv
Clean up Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 5881e22a7..1f7dc0d71 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -759,7 +759,7 @@ namespace MediaBrowser.Api.Playback if (mediaSource == null) { - var mediaSources = await MediaSourceManager.GetPlayackMediaSources(LibraryManager.GetItemById(request.Id), null, false, false, cancellationToken).ConfigureAwait(false); + var mediaSources = await MediaSourceManager.GetPlaybackMediaSources(LibraryManager.GetItemById(request.Id), null, false, false, cancellationToken).ConfigureAwait(false); mediaSource = string.IsNullOrEmpty(request.MediaSourceId) ? mediaSources[0] |
