张晨
2025-05-09 11:16:32 +08:00
parent 03ba6f5614
commit 391eb64df1

View File

@ -662,7 +662,7 @@ public class UserRepository {
String userInfo = mPreferences.getString(Constants.USER_INFO_KEY, null); String userInfo = mPreferences.getString(Constants.USER_INFO_KEY, null);
if (!TextUtils.isEmpty(userInfo)) { if (!TextUtils.isEmpty(userInfo)) {
UserInfoEntity infoEntity = GsonUtils.fromJson(userInfo, UserInfoEntity.class); UserInfoEntity infoEntity = GsonUtils.fromJson(userInfo, UserInfoEntity.class);
setAcceleratorToken(infoEntity.getUserId(), null); setAcceleratorToken(infoEntity.getUserId(), () -> null);
} }
} }