Поправки лимита
This commit is contained in:
@@ -158,7 +158,7 @@ class Search {
|
|||||||
title = '';
|
title = '';
|
||||||
genre = '';
|
genre = '';
|
||||||
lang = '';
|
lang = '';
|
||||||
limit = 100;
|
limit = 50;
|
||||||
|
|
||||||
//stuff
|
//stuff
|
||||||
queryFound = -1;
|
queryFound = -1;
|
||||||
|
|||||||
@@ -239,7 +239,8 @@ class DbSearcher {
|
|||||||
const authorIds = await this.getAuthorIds(query);
|
const authorIds = await this.getAuthorIds(query);
|
||||||
|
|
||||||
const totalFound = authorIds.length;
|
const totalFound = authorIds.length;
|
||||||
const limit = (query.limit ? query.limit : 1000);
|
let limit = (query.limit ? query.limit : 100);
|
||||||
|
limit = (limit > 1000 ? 1000 : limit);
|
||||||
const offset = (query.offset ? query.offset : 0);
|
const offset = (query.offset ? query.offset : 0);
|
||||||
|
|
||||||
//выборка найденных авторов
|
//выборка найденных авторов
|
||||||
|
|||||||
Reference in New Issue
Block a user