Allow party pause for hosts using external plex clients (like a remote)
This commit is contained in:
parent
b7789c20be
commit
531fbcc20d
|
@ -179,8 +179,10 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
sendPartyPause: ({ getters }, isPause) => {
|
sendPartyPause: ({ getters, rootGetters }, isPause) => {
|
||||||
if (!getters.AM_I_HOST && getters.IS_PARTY_PAUSING_ENABLED) {
|
if ((!getters.AM_I_HOST
|
||||||
|
|| rootGetters['plexclients/GET_CHOSEN_CLIENT_ID'] !== 'PTPLAYER9PLUS10')
|
||||||
|
&& getters.IS_PARTY_PAUSING_ENABLED) {
|
||||||
emit({
|
emit({
|
||||||
eventName: 'partyPause',
|
eventName: 'partyPause',
|
||||||
data: isPause,
|
data: isPause,
|
||||||
|
|
Loading…
Reference in New Issue