Don't mark the library channel as played.
This commit is contained in:
parent
ffbfa05811
commit
193cee5bfa
1 changed files with 2 additions and 1 deletions
|
@ -526,7 +526,8 @@ export const load = (
|
|||
dispatch(mixerState.actions.setPlayerState({ player, state: "playing" }));
|
||||
|
||||
const state = getState().mixer.players[player];
|
||||
if (state.loadedItem != null) {
|
||||
// Don't set played on PFL Channel
|
||||
if (state.loadedItem != null && player !== PLAYER_PFL_ID) {
|
||||
dispatch(
|
||||
setItemPlayed({ itemId: itemId(state.loadedItem), played: true })
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue