Rikard Teodorsson

Results 28 comments of Rikard Teodorsson

I found the issue, when creating the client with ```js const client = new Client() .setEndpoint(process.env.APPWRITE_FUNCTION_API_ENDPOINT) .setProject(process.env.APPWRITE_FUNCTION_PROJECT_ID) .setKey(req.headers['x-appwrite-key']); ``` the `process.env.APPWRITE_FUNCTION_API_ENDPOINT` returns the correct endpoint but it uses `http://my.domain/v1` instead...

I proxy using HTTP: `proxy_pass http://127.0.0.1:80/;` Changing it to `proxy_pass https://127.0.0.1:443/;` and enabling FORCE_HTTPS worked :)

I have the same issue on appwrite 1.6.1. If you enable MFA (`account.updateMFA(true)`) before the "Verify authenticator" (`updateMfaAuthenticator(AuthenticatorType.Totp, otp)`) step, you risk locking yourself out of the account if the...

The app imports by mime type, not by extension: https://github.com/Arctosoft/Valv-Android/blob/e4aafe8fe21b85e21a4e7045c537741fdb41f28f/app/src/main/java/se/arctosoft/vault/DirectoryFragment.java#L219 I guess I can add a way to import other file types as well, but then it would not only...

Thanks, changing .env to ```env _APP_FUNCTIONS_CPUS=8 _APP_FUNCTIONS_MEMORY=8192 ``` solved it :)

If I create a domain for the function it works and I can execute it, but as soon as I delete the domain it gets the same error.

> I am genuinely surprised this is not already possible. This is an important feature to have. I set the vault pin as my phone pin just to get the...

Yes I did, but I don't have the output (unless it's saved somewhere when running the command? If not, this would be a good feature request) No backups either so...

The same bug happens on 1.6.2 after (accidentally) upgrading to node-appwrite 17.0.0 in a function that updates the database collections+attributes. ![Image](https://github.com/user-attachments/assets/67f97601-c64a-4d73-9401-1b18c731095e) Downgrading to 16.0.0 and updating the collections again does...

These were two separate appwrite instances, the first had issues after upgrading to 1.7.4 but the second was still on 1.6.2. I will try to reproduce it and share some...