From 2aa699547c55612c2227e652f07d4adc4599371f Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 13 Oct 2024 21:50:47 +0800 Subject: [PATCH] :bug: Bug fixing on searching --- lib/screens/posts/post_search.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/posts/post_search.dart b/lib/screens/posts/post_search.dart index a6ffa7a..82662d9 100644 --- a/lib/screens/posts/post_search.dart +++ b/lib/screens/posts/post_search.dart @@ -24,7 +24,7 @@ class _PostSearchScreenState extends State { final PagingController _pagingController = PagingController(firstPageKey: 0); - bool _isBusy = true; + late bool _isBusy = widget.tag != null || widget.category != null; _searchPosts(int pageKey) async { if (widget.tag == null &&