Update PageBrowseRecentlyAdded.vue

Remove the last 8 weeks as this in my case resulted in an empty list. Furthermore, increase limit to get more entries in the list.
This commit is contained in:
johnappletree 2020-11-24 21:46:56 +01:00 committed by GitHub
parent b72fda76c8
commit 96c9424575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,8 +25,8 @@ const browseData = {
load: function (to) {
return webapi.search({
type: 'album',
expression: 'time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc',
limit: 50
expression: 'media_kind is music having track_count > 3 order by time_added desc',
limit: 500
})
},