mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Only create context if gain mode active (#2173)
This commit is contained in:
parent
2400e4f60d
commit
b129cae0d8
1 changed files with 3 additions and 2 deletions
|
@ -69,7 +69,8 @@ const Player = () => {
|
|||
context === null &&
|
||||
audioInstance &&
|
||||
config.enableReplayGain &&
|
||||
'AudioContext' in window
|
||||
'AudioContext' in window &&
|
||||
(gainInfo.gainMode === 'album' || gainInfo.gainMode === 'track')
|
||||
) {
|
||||
const ctx = new AudioContext()
|
||||
// we need this to support radios in firefox
|
||||
|
@ -83,7 +84,7 @@ const Player = () => {
|
|||
setContext(ctx)
|
||||
setGainNode(gain)
|
||||
}
|
||||
}, [audioInstance, context])
|
||||
}, [audioInstance, context, gainInfo.gainMode])
|
||||
|
||||
useEffect(() => {
|
||||
if (gainNode) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue