diff --git a/src/lib/components/layout/SearchModal.svelte b/src/lib/components/layout/SearchModal.svelte index 8730d5ce5..a5c41cb58 100644 --- a/src/lib/components/layout/SearchModal.svelte +++ b/src/lib/components/layout/SearchModal.svelte @@ -33,15 +33,14 @@ clearTimeout(searchDebounceTimeout); } + page = 1; + chatList = null; if (query === '') { - page = 1; chatList = await getChatList(localStorage.token, page); } else { searchDebounceTimeout = setTimeout(async () => { - page = 1; - chatList = null; chatList = await getChatListBySearchText(localStorage.token, query, page); - }, 100); + }, 200); } if ((chatList ?? []).length === 0) {