accidentally broke eq

This commit is contained in:
Maikiwi 2022-03-13 21:05:36 -07:00
parent a0664eecd2
commit 891f3debe5
2 changed files with 4 additions and 4 deletions

View file

@ -435,7 +435,7 @@ const CiderAudio = {
hierarchical_loading: function (){
CiderAudio.hierarchical_unloading();
if (Math.max(...app.cfg.audio.equalizer.gain) !== 0) {
if (Math.max(...app.cfg.audio.equalizer.gain) != 0) {
CiderAudio.equalizer(true, 0);
if (app.cfg.audio.equalizer.vibrantBass !== '0') {
@ -623,7 +623,7 @@ const CiderAudio = {
}
}
}
else { //if (Math.max(...app.cfg.audio.equalizer.gain) === 0)
else { //if (Math.max(...app.cfg.audio.equalizer.gain) == 0)
if (app.cfg.audio.equalizer.vibrantBass !== '0') { // Vibrant Bass
CiderAudio.vibrantbass_h2_1(true, 0)