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
- Cloud login down?
I am able to access my functions, databases, and buckets - as well as deploy via cli, but I cannot login to the console - nor does my appwrite-account-based log...
- Certificate not regenerating
My Certainly issued certificate expired and I haven't recieved a new one yet. I've tried re-adding the domain aswell as its DNS records however it directly jum...
- Certificate isn't regenerating
Hi appwrite. I'm not being issued a new certificate on appwrite sites. I've tried re-adding the domain aswell as the certificates but it just does not work. I...