feat: 支持过滤阅读完成情况

This commit is contained in:
Yoshiro_fan
2025-10-26 16:30:52 +08:00
parent 09a1d2821c
commit be23c4fe68
5 changed files with 154 additions and 13 deletions

View File

@@ -441,7 +441,7 @@ class ImageFavoriteManager with ChangeNotifier {
for (var comic in comics) {
count += comic.images.length;
for (var tag in comic.tags) {
String finalTag = tag;
String finalTag = tag.split(":").last;
tagCount[finalTag] = (tagCount[finalTag] ?? 0) + 1;
}