diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 7edfaaed62..9201e9374c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -63,6 +63,7 @@ - [Anantharaju S](https://github.com/Anantharajus) - [Merlin Sievers](https://github.com/dann-merlin) - [Fishbigger](https://github.com/fishbigger) + - [sleepycatcoding](https://github.com/sleepycatcoding) # Emby Contributors diff --git a/src/components/playback/playbackmanager.js b/src/components/playback/playbackmanager.js index 879b5fe36f..77cdb4b6d5 100644 --- a/src/components/playback/playbackmanager.js +++ b/src/components/playback/playbackmanager.js @@ -2123,7 +2123,7 @@ class PlaybackManager { const getAdditionalParts = async (items) => { const getOneAdditionalPart = async function (item) { let retVal = [item]; - if (item.Type === 'Movie') { + if (item.Type === 'Movie' || item.Type === 'Episode') { const client = ServerConnections.getApiClient(item.ServerId); const user = await client.getCurrentUser(); const additionalParts = await client.getAdditionalVideoParts(user.Id, item.Id);