mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix encoding escape quotes
This commit is contained in:
parent
3920d73045
commit
1dd2833ed7
17 changed files with 387 additions and 341 deletions
|
@ -24,6 +24,14 @@
|
|||
|
||||
return parseInt(store.getItem('chromecastBitrate') || '') || 3000000;
|
||||
},
|
||||
enableChromecastAc3: function (val) {
|
||||
|
||||
if (val != null) {
|
||||
update('enablechromecastac3', val.toString());
|
||||
}
|
||||
|
||||
return store.getItem('enablechromecastac3') == 'true';
|
||||
},
|
||||
enableExternalPlayers: function (val) {
|
||||
|
||||
if (val != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue