diff --git a/dashboard-ui/components/favoriteitems.js b/dashboard-ui/components/favoriteitems.js index 1416a3484b..2da73aeb77 100644 --- a/dashboard-ui/components/favoriteitems.js +++ b/dashboard-ui/components/favoriteitems.js @@ -40,7 +40,8 @@ Recursive: true, Fields: "PrimaryImageAspectRatio,SyncInfo", CollapseBoxSetItems: false, - ExcludeLocationTypes: "Virtual" + ExcludeLocationTypes: "Virtual", + EnableTotalRecordCount: false }; if (topParentId) { @@ -73,7 +74,7 @@ html += '
'; html += '

' + Globalize.translate(section.name) + '

'; - if (result.TotalRecordCount > result.Items.length) { + if (options.Limit && result.Items.length >= options.Limit) { var href = "secondaryitems.html?type=" + section.types + "&filters=IsFavorite&titlekey=" + section.name; html += ''; diff --git a/dashboard-ui/strings/en-US.json b/dashboard-ui/strings/en-US.json index c3baa64dcd..20b7d20997 100644 --- a/dashboard-ui/strings/en-US.json +++ b/dashboard-ui/strings/en-US.json @@ -2351,7 +2351,7 @@ "LabelTitle": "Title:", "LabelOriginalTitle": "Original title:", "LabelSortTitle": "Sort title:", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings", + "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",