From 819a28c48cd74f40e56cd71b39f7e42a468cc4d5 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sat, 26 Jul 2025 23:51:08 +0800 Subject: [PATCH] fix blackMids Signed-off-by: bggRGjQaUbCoE --- lib/utils/storage_pref.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/storage_pref.dart b/lib/utils/storage_pref.dart index 27ff8320..66e25e44 100644 --- a/lib/utils/storage_pref.dart +++ b/lib/utils/storage_pref.dart @@ -41,7 +41,7 @@ class Pref { ); static Set get blackMids => - _localCache.get(LocalCacheKey.blackMids, defaultValue: const {}); + _localCache.get(LocalCacheKey.blackMids, defaultValue: {}); static set blackMids(Set blackMidsSet) { _localCache.put(LocalCacheKey.blackMids, blackMidsSet);