mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
28bb4ffd62
commit
6fb6168107
12 changed files with 113 additions and 241 deletions
|
@ -47,7 +47,8 @@ define(['appStorage', 'events'], function (appStorage, events) {
|
|||
self.set('maxStaticMusicBitrate', val);
|
||||
}
|
||||
|
||||
return parseInt(self.get('maxStaticMusicBitrate') || '0') || null;
|
||||
var defaultValue = 384000;
|
||||
return parseInt(self.get('maxStaticMusicBitrate') || defaultValue.toString()) || defaultValue;
|
||||
};
|
||||
|
||||
self.maxChromecastBitrate = function (val) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue