increase autocomplete dialog album count (#2152)

This commit is contained in:
ppprism 2022-03-23 15:17:11 +00:00 committed by GitHub
parent e83f3160ee
commit 6d4e5175db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,9 +105,13 @@ export default {
this.loading = true;
// todo: either introduce infinite flag or
// make count parameter optional for REST API
const MAX_COUNT = 10000;
const params = {
q: q,
count: 1000,
count: MAX_COUNT,
offset: 0,
type: "album"
};