CAP aggressive sucks giant pp

This commit is contained in:
maikirakiwi 2022-05-14 21:13:19 -07:00
parent 645901df79
commit 8d6ec8cd28
3 changed files with 22 additions and 33 deletions

View file

@ -854,8 +854,28 @@ const app = new Vue({
self.$refs.queue.updateQueue();
}
this.currentSongInfo = a
try {
if (app.mk.nowPlayingItem.flavor.includes("64")) {
if (localStorage.getItem("playingBitrate") != 64) {
localStorage.setItem("playingBitrate", 64)
CiderAudio.hierarchical_loading();
}
}
else if (app.mk.nowPlayingItem.flavor.includes("256")) {
if (localStorage.getItem("playingBitrate") != 256) {
localStorage.setItem("playingBitrate", 256)
CiderAudio.hierarchical_loading();
}
}
else {
localStorage.setItem("playingBitrate", 256)
CiderAudio.hierarchical_loading();
}
} catch(e) {
localStorage.setItem("playingBitrate", 256)
}
if (app.cfg.audio.normalization) {
// get unencrypted audio previews to get SoundCheck's normalization tag
try {