From 768e4b0bc2b346421aacdb883523fef20adfff5a Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Fri, 13 Oct 2023 14:29:23 +0800 Subject: [PATCH] allow to search all messages of a sender closes #8. --- src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index 4c2ee73..2423cb7 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -114,7 +114,7 @@ error = "请选择要搜索的群组"; return; } - if (!query && !islocal) { + if (!query && !islocal && !sender) { error = "请输入搜索关键字"; return; }