From 44fc37b2a1231a3d1ca94401ca68a6ac3fa9bfca Mon Sep 17 00:00:00 2001 From: sleepycatcoding Date: Mon, 24 Apr 2023 20:44:19 +0300 Subject: [PATCH 1/2] Fix additional parts not playing in episodes --- src/components/playback/playbackmanager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From 1c111e6d99cdfeb0701bde684cc67ecbddf73fe7 Mon Sep 17 00:00:00 2001 From: sleepycatcoding Date: Mon, 24 Apr 2023 20:45:01 +0300 Subject: [PATCH 2/2] Add contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) 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