Fixed an issue where clicking on local comics on the home page would cause the history to be lost. Close #196

This commit is contained in:
2025-02-18 18:49:25 +08:00
parent bd53416968
commit d73e152cec
3 changed files with 6 additions and 1 deletions

View File

@@ -319,7 +319,7 @@ class HistoryManager with ChangeNotifier {
for (var element in res) {
_cachedHistoryIds![element["id"] as String] = true;
}
for (var key in cachedHistories.keys) {
for (var key in cachedHistories.keys.toList()) {
if (!_cachedHistoryIds!.containsKey(key)) {
cachedHistories.remove(key);
}