Don't mark the library channel as played.

This commit is contained in:
Matthew Stratford 2021-01-28 19:03:25 +00:00
parent ffbfa05811
commit 193cee5bfa

View file

@ -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 })
);