From 5d1d62e157038262e191723f46129a52b124afc7 Mon Sep 17 00:00:00 2001 From: nyne Date: Wed, 15 Jan 2025 18:31:15 +0800 Subject: [PATCH] fix history database --- lib/foundation/history.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/foundation/history.dart b/lib/foundation/history.dart index 920f1b6..062055f 100644 --- a/lib/foundation/history.dart +++ b/lib/foundation/history.dart @@ -337,6 +337,7 @@ class HistoryManager with ChangeNotifier { } void close() { + isInitialized = false; _db.dispose(); } }