fixed this
This commit is contained in:
parent
b5ad5562b7
commit
04956a5590
1 changed files with 15 additions and 1 deletions
|
@ -400,7 +400,21 @@ const app = new Vue({
|
||||||
};
|
};
|
||||||
|
|
||||||
// Load saved quality
|
// Load saved quality
|
||||||
app.mk.bitrate = app.cfg.audio.quality
|
switch (app.cfg.audio.quality){
|
||||||
|
case "extreme":
|
||||||
|
app.mk.bitrate = app.cfg.audio.quality = 990
|
||||||
|
break;
|
||||||
|
case "high":
|
||||||
|
app.mk.bitrate = app.cfg.audio.quality = 256
|
||||||
|
break;
|
||||||
|
case "low":
|
||||||
|
app.mk.bitrate = app.cfg.audio.quality = 64
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
app.mk.bitrate = app.cfg.audio.quality
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// load last played track
|
// load last played track
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue