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:
Kendall Garner 2024-08-04 01:18:41 +00:00 committed by GitHub
parent fa85e2a781
commit 290333ec59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,