mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 14:35:48 +03:00
- client: fix loading of additional search results
This commit is contained in:
parent
ba04b38a5f
commit
86df748209
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ const checkFilteredLogs = async (data, filter, dispatch, total) => {
|
|||
|
||||
try {
|
||||
const additionalLogs = await getLogsWithParams({ older_than: oldest, filter });
|
||||
if (additionalLogs.logs.length > 0) {
|
||||
if (additionalLogs.oldest.length > 0) {
|
||||
return await checkFilteredLogs(additionalLogs, filter, dispatch, {
|
||||
logs: [...totalData.logs, ...additionalLogs.logs],
|
||||
oldest: additionalLogs.oldest,
|
||||
|
|
Loading…
Reference in a new issue