1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update chromecast bitrate setting

This commit is contained in:
Luke Pulverenti 2016-01-05 11:48:20 -05:00
parent ab7866deca
commit e685f53bb4

View file

@ -35,10 +35,10 @@
maxChromecastBitrate: function (val) {
if (val != null) {
update('chromecastBitrate', val);
update('chromecastBitrate1', val);
}
val = appStorage.getItem('chromecastBitrate');
val = appStorage.getItem('chromecastBitrate1');
return val ? parseInt(val) : null;
},