project name: iskra
please include the error here...and is that the project ID or name?
it is id
[VERBOSE-2:dart_vm_initializer.cc(41)] Unhandled Exception: AppwriteException: general_unknown, Server Error (500) #0 ClientMixin.prepareResponse (package:appwrite/src/client_mixin.dart:73:9) #1 ClientIO.call (package:appwrite/src/client_io.dart:373:14) <asynchronous suspension> #2 Databases.updateDocument (package:appwrite/services/databases.dart:123:17) <asynchronous suspension> flutter: AppwriteException: general_unknown, Server Error (500)
and what's your code that is throwing this exception?
FYI, it's best to wrap code in backticks to format a bit nicer. You can use 1 backtick for inline code (https://www.markdownguide.org/basic-syntax/#code) and 3 backticks for multiline code (https://www.markdownguide.org/extended-syntax/#syntax-highlighting.
try {
AppWrite().db?.updateDocument(
collectionId: 'users',
data: {'about': newText},
databaseId: 'iskra',
documentId: SaveService().prefs.getString('userId')!,
);
} on AppwriteException catch (e) {
print(e);
}
}
did you create the userPhotos attribute recently? is it still processing?
Yes. Today there were problems with deleting an attribute
what problems? What's the state of your attributes now?
After deleting an attribute, the deletion status hung for a long time
now i do not see problrms in panel
Attribute problems happen frequently. can't add or delete
every day i gues
so it was deleting for a while, but now the attribute is gone? can you share a screenshot of your attributes list?
maintenance happens every day at the same time for about an hour. if it says processing or deleting, you'll just have to wait.
list Attribute is long. cant get screenshot. But i can see that is good. no error status
so?
Recommended threads
- [Regression] Appwrite 25.1.0 returns Inv...
I've already opened an issue on GitHub, but somewhat it doesn't seem like GitHub is monitored very closely, so I'm leaving a bug report here on Discord as well....
- Helping in unblock my account
I deleted my Appwrite Cloud account that was linked via GitHub. Now I activated my GitHub Student Pack and want to sign up again using the same GitHub account, ...
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...