Hi, I have self-hosted Appwrite via Coolify on a Ubuntu-VPS . I am accessing the Database via Swift. Everything is working as expected, but with one collection I am having troubles. I am fetching a list of documents with the listDocument-method.
The thing is, even if the collection is containing only one document, I am getting this error: The operation couldn’t be completed. (NIOHTTPCompression.NIOHTTPDecompression.DecompressionError error 0.)
The attributes in this collection are 10x string, 3x string-array, 3x int, 1x double, 2x datetime. I nailed it down to one of the string-arrays which contains ten Urls. When I reduce it to one, the request is going through. As soon as a second link is in the array, the request fails again.
Also funny: On a localHosted variant of AppWrite I had no problems so far.
I cannot find much about the Decompression-topic, so I hope anyone had the same issue and could help me. Thank you very much!
What are the logs for the appwrite container?
Recommended threads
- I recently switched to TablesDb. When li...
olddb.list_documents( queries =[ Query.order_desc("timestamp"), Query.equal("isPosted",[False]) ] ) Above works fine and reruns documents But below don't return...
- Database error validating 'min' and 'max...
I keep seeing an error when I try to add a column to a database table within the AppWrite cloud UI. I also see this error when trying to create or update a reco...
- Fine grained permissions for webRTC hand...
Hi, I am building a WebRTC P2P app for a university project and have hit a security limitation regarding permissions for anonymous users. The Architecture: We ...