mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update chromecast bitrate setting
Conflicts: MediaBrowser.WebDashboard/dashboard-ui/scripts/appsettings.js
This commit is contained in:
parent
06334532ea
commit
129de9d3ae
1 changed files with 3 additions and 9 deletions
|
@ -35,18 +35,12 @@
|
|||
maxChromecastBitrate: function (val) {
|
||||
|
||||
if (val != null) {
|
||||
update('chromecastBitrate', val);
|
||||
update('chromecastBitrate1', val);
|
||||
}
|
||||
|
||||
return parseInt(appStorage.getItem('chromecastBitrate') || '') || 3000000;
|
||||
},
|
||||
enableChromecastAc3: function (val) {
|
||||
val = appStorage.getItem('chromecastBitrate1');
|
||||
|
||||
if (val != null) {
|
||||
update('enablechromecastac3', val.toString());
|
||||
}
|
||||
|
||||
return appStorage.getItem('enablechromecastac3') == 'true';
|
||||
return val ? parseInt(val) : null;
|
||||
},
|
||||
enableExternalPlayers: function (val) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue