diff --git a/web/directives/plex-library.js b/web/directives/plex-library.js index 23f5e25..23b89d9 100644 --- a/web/directives/plex-library.js +++ b/web/directives/plex-library.js @@ -69,7 +69,7 @@ module.exports = function (plex, dizquetv, $timeout, commonProgramTools) { } } scope.selectLibrary = async (library) => { - await scope.fillNestedIfNecessary(library); + await scope.fillNestedIfNecessary(library, true); let p = library.nested.length; scope.pending += library.nested.length; try { diff --git a/web/services/plex.js b/web/services/plex.js index 35575ff..18913bc 100644 --- a/web/services/plex.js +++ b/web/services/plex.js @@ -283,7 +283,7 @@ module.exports = function ($http, $window, $interval) { console.error(msg , err); } } - if ( (includeCollections === true) && (res.viewGroup !== "artist" ) ) { + if (includeCollections === true) { let k = res.librarySectionID; k = `/library/sections/${k}/collections`;