fix: Fixed some issues.

This commit is contained in:
Brett
2023-10-17 16:09:19 +08:00
parent d07495fff6
commit 67251ae7ea
9 changed files with 175 additions and 51 deletions

View File

@@ -52,11 +52,7 @@ class UserManager {
Future<String?> setSelfInfo({
String? nickname,
String? faceURL,
int? gender,
int? appManagerLevel,
String? phoneNumber,
int? birth,
String? email,
String? ex,
String? operationID,
}) =>
@@ -66,11 +62,7 @@ class UserManager {
// 'userID': userID,
'nickname': nickname,
'faceURL': faceURL,
'gender': gender,
'appManagerLevel': appManagerLevel,
'phoneNumber': phoneNumber,
'birth': birth,
'email': email,
'ex': ex,
'operationID': Utils.checkOperationID(operationID),
}));