
Hi!
Using https://github.com/appwrite/sdk-for-apple to upload images to Storage, it does not upload images larger than ~2mb.
Error message: Invalid document structure: Attribute "chunksTotal" has invalid type. Value must be a valid range between 0 and 2,147,483,647
Code:
let media = try await storage
.createFile(
bucketId: "xxx",
fileId: ID.unique(),
file: InputFile.fromData(
targetImage!.jpegData(
compressionQuality: 1.0)!,
filename: "example.jpg",
mimeType: "image/jpeg")
)
Expected behavior
Successfully uploading larger images to storage.
Actual Behavior
It actually throws an error "Invalid document structure: Attribute "chunksTotal" has invalid type. Value must be a valid range between 0 and 2,147,483,647" and keeps corrupted files in bucket (with status pending).
Appwrite version
Version 1.6.x
Operating system
Linux
Your Environment
SDK: https://github.com/appwrite/sdk-for-apple - latest version Language: Swift
Recommended threads
- transaction like functionality
As I understand it appwrite doesn't support transactions. I'm attempting to make a document in three separate collections at the same time when a user register...
- Error while login the member which is in...
Facing some error. Error logging in: Exception: No team access. Please contact your administrator. But the email/name/ new client I have created is in my tea...
- Document already existed
Hi, I am trying to add a document via cloud function using nodejs22. Everytime I do `await db.createDocument( dbid, collectionid, customDocId, data);` it will g...
