Jonas Kohl

Results 46 comments of Jonas Kohl

I agree. I'll see what I can do

Yes, happens to me, too. Super annoying, especially in conjunction with #14185

I also tried putting that config into my `.env` file like this: ```.env # ... SOCIALACCOUNT_PROVIDERS='{ "nextcloud": { "APPS": [ { "client_id": "#REDACTED", "secret": "#REDACTED", "settings": { "server": "https://my-redacted-nextcloud-address/", }...

I removed the quotes like this: ```env SOCIALACCOUNT_PROVIDERS={ "nextcloud": { "APPS": [ { "client_id": "#REDACTED", "secret": "#REDACTED", "settings": { "server": "https://my-redacted-nextcloud-address/" } } ] }} ``` But I *still* get...

Yes, I rebuilt the container with `docker compose up -d --force-recreate --build`

> This works for me: `SOCIALACCOUNT_PROVIDERS={"nextcloud":{"SERVER":"https://mynextcould.xyz"}}` Maybe this structure is deprecated, as I don't see it in the Allauth docs, but as of Tandoor 1.5.14 it's working well. Doing this...