diff --git a/dashboard-ui/dlnaprofile.html b/dashboard-ui/dlnaprofile.html index f33651ef91..4c48413bb5 100644 --- a/dashboard-ui/dlnaprofile.html +++ b/dashboard-ui/dlnaprofile.html @@ -154,6 +154,11 @@
${LabelEmbedAlbumArtDidlHelp}
+
  • + + +
    ${LabelEnableSingleImageInDidlLimitHelp}
    +
  • diff --git a/dashboard-ui/scripts/dlnaprofile.js b/dashboard-ui/scripts/dlnaprofile.js index 7daa17e40c..969bd41960 100644 --- a/dashboard-ui/scripts/dlnaprofile.js +++ b/dashboard-ui/scripts/dlnaprofile.js @@ -44,6 +44,7 @@ }).checkboxradio('refresh'); $('#chkEnableAlbumArtInDidl', page).checked(profile.EnableAlbumArtInDidl).checkboxradio('refresh'); + $('#chkEnableSingleImageLimit', page).checked(profile.EnableSingleAlbumArtLimit).checkboxradio('refresh'); renderXmlDocumentAttributes(page, profile.XmlRootAttributes || []); @@ -895,6 +896,7 @@ profile.Name = $('#txtName', page).val(); profile.EnableAlbumArtInDidl = $('#chkEnableAlbumArtInDidl', page).checked(); + profile.EnableSingleAlbumArtLimit = $('#chkEnableSingleImageLimit', page).checked(); profile.SupportedMediaTypes = $('.chkMediaType:checked', page).get().map(function (c) { return c.getAttribute('data-value');