mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Fix random volume changes
This commit is contained in:
parent
d481864035
commit
cf042ed83d
1 changed files with 1 additions and 4 deletions
|
@ -120,9 +120,6 @@ const Player = () => {
|
|||
|
||||
const onAudioPlay = useCallback(
|
||||
(info) => {
|
||||
if (audioInstance) {
|
||||
audioInstance.volume = playerState.volume
|
||||
}
|
||||
dispatch(currentPlaying(info))
|
||||
setStartTime(Date.now())
|
||||
if (info.duration) {
|
||||
|
@ -146,7 +143,7 @@ const Player = () => {
|
|||
}
|
||||
}
|
||||
},
|
||||
[dispatch, showNotifications, audioInstance, playerState.volume]
|
||||
[dispatch, showNotifications]
|
||||
)
|
||||
|
||||
const onAudioPause = useCallback(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue