我的智能体

This commit is contained in:
weber
2025-08-05 17:01:23 +08:00
parent a944bd0fa3
commit b837c704e5
12 changed files with 177 additions and 95 deletions

View File

@@ -42,7 +42,12 @@ class AccountProfileViewModel : ViewModel() {
if (profileId == profile?.id) {
return@launch
}
profile = userService.getUserProfile(id)
try {
profile = userService.getUserProfile(id)
} catch (e: Exception) {
e.printStackTrace()
}
refreshing = false
profile?.let {
try {