mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update now playing
This commit is contained in:
parent
ad38cf4783
commit
b5a723314b
23 changed files with 229 additions and 66 deletions
|
@ -98,6 +98,21 @@
|
|||
return appStorage.getItem('displayLanguage') || 'en-US';
|
||||
},
|
||||
|
||||
cameraUploadServers: function (val) {
|
||||
|
||||
if (val != null) {
|
||||
update('cameraUploadServers', val.join(','));
|
||||
}
|
||||
|
||||
val = appStorage.getItem('cameraUploadServers');
|
||||
|
||||
if (val) {
|
||||
return val.split(',');
|
||||
}
|
||||
|
||||
return [];
|
||||
},
|
||||
|
||||
displayPreferencesKey: function () {
|
||||
if (AppInfo.isNativeApp) {
|
||||
return 'Emby Mobile';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue