Browse Source

Fix when play/pause after scrobble threshold (#30)

master
jeffvli 3 years ago
committed by Jeff
parent
commit
42eddb563c
  1. 28
      src/components/player/Player.tsx

28
src/components/player/Player.tsx

@ -467,7 +467,27 @@ const Player = ({ currentEntryList, children }: any, ref: any) => {
);
}, [dispatch, playQueue, scrobbled]);
const handleOnPlay = (playerNumber: 1 | 2) => {
const handleOnPlay = useCallback(
(playerNumber: 1 | 2) => {
// Don't run this if resuming a song, so we'll use a 30 second check
if (playQueue.scrobble) {
let fadeAtTime;
let duration;
if (playQueue.currentPlayer === 1) {
duration = player1Ref.current.audioEl.current?.duration;
fadeAtTime = duration - playQueue.fadeDuration;
} else {
duration = player2Ref.current.audioEl.current?.duration;
fadeAtTime = duration - playQueue.fadeDuration;
}
// Set the reset scrobble condition based on fade or gapless
if (
playQueue.fadeDuration > 0
? !(player.currentSeek >= 240 || player.currentSeek >= fadeAtTime - 15) &&
player.currentSeek <= fadeAtTime
: !(player.currentSeek >= 240 || player.currentSeek >= duration * 0.9)
) {
setScrobbled(false);
if (playQueue.scrobble) {
if (playerNumber === 1) {
@ -484,7 +504,11 @@ const Player = ({ currentEntryList, children }: any, ref: any) => {
});
}
}
};
}
}
},
[currentEntryList, playQueue, player.currentSeek]
);
return (
<>

Loading…
Cancel
Save