fix: 关注按钮点击过快未判空

This commit is contained in:
orz12
2024-04-04 11:03:03 +08:00
parent 6f3124b60a
commit 3cb533d69c

View File

@@ -73,6 +73,10 @@ class MemberController extends GetxController {
SmartDialog.showToast('账号未登录');
return;
}
if (memberInfo.value == null) {
SmartDialog.showToast('尚未获取到用户信息');
return;
}
if (attribute.value == 128) {
blockUser();
return;