diff --git a/dashboard-ui/library.html b/dashboard-ui/library.html index 83787632ff..464fa41cdb 100644 --- a/dashboard-ui/library.html +++ b/dashboard-ui/library.html @@ -20,8 +20,7 @@
Below are your media collections. Expand a collection to add or remove media locations assigned to it.
-This is the default media library that will be shared with all users unless they setup their own.
+This is the default media library that will be shared with all users unless they setup their own.
diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js index dbcacb9138..758fe67ee4 100644 --- a/dashboard-ui/scripts/medialibrarypage.js +++ b/dashboard-ui/scripts/medialibrarypage.js @@ -29,6 +29,7 @@ if (user.Configuration.UseCustomLibrary) { ApiClient.getVirtualFolders(userId).done(MediaLibraryPage.reloadVirtualFolders); + $(".editing_default").hide(); $('#divMediaLibrary', page).show(); } else { $('#divMediaLibrary', page).hide(); @@ -118,6 +119,8 @@ user.Configuration.UseCustomLibrary = !useDefaultLibrary; ApiClient.updateUser(user).done(MediaLibraryPage.reloadLibrary); + + $(".editing_default").hide(); }); }, diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js index 6910df9b4d..4394e76bae 100644 --- a/dashboard-ui/scripts/mediaplayer.js +++ b/dashboard-ui/scripts/mediaplayer.js @@ -145,16 +145,18 @@ audioCodec: 'Vorbis' })); + /* ffmpeg always says the ogg stream is corrupt after conversion var oggUrl = ApiClient.getUrl('Audio/' + item.Id + '/stream.oga', $.extend({}, baseParams, { audioCodec: 'Vorbis' })); + */ var html = ''; html += 'Use default media library
Below are your media collections. Expand a collection to add or remove media locations assigned to it.
+This is the default media library that will be shared with all users unless they setup their own.