From 531fbcc20d788f4e5b4c64dac34492a375fb17c5 Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Sun, 16 Aug 2020 14:18:45 -0500 Subject: [PATCH] Allow party pause for hosts using external plex clients (like a remote) --- src/store/modules/synclounge/actions.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/store/modules/synclounge/actions.js b/src/store/modules/synclounge/actions.js index 8bf3ea35..02beadfc 100644 --- a/src/store/modules/synclounge/actions.js +++ b/src/store/modules/synclounge/actions.js @@ -179,8 +179,10 @@ export default { }); }, - sendPartyPause: ({ getters }, isPause) => { - if (!getters.AM_I_HOST && getters.IS_PARTY_PAUSING_ENABLED) { + sendPartyPause: ({ getters, rootGetters }, isPause) => { + if ((!getters.AM_I_HOST + || rootGetters['plexclients/GET_CHOSEN_CLIENT_ID'] !== 'PTPLAYER9PLUS10') + && getters.IS_PARTY_PAUSING_ENABLED) { emit({ eventName: 'partyPause', data: isPause,