After upgrading Geddit.social to Lemmy v0.18 the whole platform broke…
After many hours of editing configs, debugging and trying out various fixes a little database query to remove the “site icon” fixed it and now are back online!
I’ll keep an eye out on further issues…
The exact fix for us using Docker:
docker exec -it <postgres-container> "bash"
to connect to your postgres database container.psql -U lemmy
to connect to the database with the lemmy user.update site set icon = null where id = 1;
then\q
then exitBy randommouse on Github](https://github.com/LemmyNet/lemmy-ui/issues/1530#issuecomment-1605781461)