* opt: downloadImg use cache

* opt: uin8 cast

* non null ext
This commit is contained in:
My-Responsitories
2025-10-14 19:36:43 +08:00
committed by GitHub
parent 43beb518f4
commit c3fa976b26
6 changed files with 84 additions and 59 deletions

View File

@@ -39,7 +39,7 @@ class _GroupPanelState extends State<GroupPanel> {
void _query() {
MemberHttp.followUpTags().then((res) {
if (mounted) {
loadingState = res..dataOrNull.removeFirstWhere((e) => e.tagid == 0);
loadingState = res..dataOrNull?.removeFirstWhere((e) => e.tagid == 0);
showDefaultBtn.value = tags.isEmpty;
setState(() {});
}