mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Use same key for replaygain's preAmp (#3184)
Resolves #2933. To prevent this from happening again, make the localstorage keys consts for set/get
This commit is contained in:
parent
fa85e2a781
commit
290333ec59
1 changed files with 7 additions and 4 deletions
|
@ -1,7 +1,10 @@
|
|||
import { CHANGE_GAIN, CHANGE_PREAMP } from '../actions'
|
||||
|
||||
const GAIN_KEY = 'gainMode'
|
||||
const PREAMP_KEY = 'preAmp'
|
||||
|
||||
const getPreAmp = () => {
|
||||
const storage = localStorage.getItem('preamp')
|
||||
const storage = localStorage.getItem(PREAMP_KEY)
|
||||
|
||||
if (storage === null) {
|
||||
return 0
|
||||
|
@ -12,7 +15,7 @@ const getPreAmp = () => {
|
|||
}
|
||||
|
||||
const initialState = {
|
||||
gainMode: localStorage.getItem('gainMode') || 'none',
|
||||
gainMode: localStorage.getItem(GAIN_KEY) || 'none',
|
||||
preAmp: getPreAmp(),
|
||||
}
|
||||
|
||||
|
@ -22,7 +25,7 @@ export const replayGainReducer = (
|
|||
) => {
|
||||
switch (type) {
|
||||
case CHANGE_GAIN: {
|
||||
localStorage.setItem('gainMode', payload)
|
||||
localStorage.setItem(GAIN_KEY, payload)
|
||||
return {
|
||||
...previousState,
|
||||
gainMode: payload,
|
||||
|
@ -33,7 +36,7 @@ export const replayGainReducer = (
|
|||
if (isNaN(value)) {
|
||||
return previousState
|
||||
}
|
||||
localStorage.setItem('preAmp', payload)
|
||||
localStorage.setItem(PREAMP_KEY, payload)
|
||||
return {
|
||||
...previousState,
|
||||
preAmp: value,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue