Only play automatically on enabling PFL.

This commit is contained in:
Matthew Stratford 2021-01-05 23:47:32 +00:00
parent e5358c7cff
commit 658ef5f1eb
No known key found for this signature in database
GPG key ID: 9E53C8B3F0B57395

View file

@ -760,12 +760,14 @@ export const setChannelPFL = (
player: number,
enabled: boolean
): AppThunk => async (dispatch) => {
if (typeof audioEngine.players[player] !== "undefined") {
if (!audioEngine.players[player]?.isPlaying) {
if (
enabled &&
typeof audioEngine.players[player] !== "undefined" &&
!audioEngine.players[player]?.isPlaying
) {
dispatch(setVolume(player, "off", false));
dispatch(play(player));
}
}
dispatch(mixerState.actions.setPlayerPFL({ player, enabled }));
audioEngine.setPFL(player, enabled);
};