diff --git a/src/components/playback/playbackmanager.js b/src/components/playback/playbackmanager.js index e90aff609f..f19bb51e53 100644 --- a/src/components/playback/playbackmanager.js +++ b/src/components/playback/playbackmanager.js @@ -2573,8 +2573,8 @@ export class PlaybackManager { } const apiClient = ServerConnections.getApiClient(item.ServerId); - const mediaSourceId = playOptions.mediaSourceId || item.Id; - const getMediaStreams = apiClient.getItem(apiClient.getCurrentUserId(), mediaSourceId) + const mediaSourceId = playOptions.mediaSourceId; + const getMediaStreams = apiClient.getItem(apiClient.getCurrentUserId(), mediaSourceId || item.Id) .then(fullItem => { return fullItem.MediaStreams; });