Skip Navigation

Search

Apparent slow/broken comments

When you post or comment in some of the bigger communities like Piracy or ADHD Memes it might appear as if your post is hanging.

This is misleading! The comment or post still goes through after a second or two, but the UI is buggy at the moment. You can leave it "spinning" for a while and hope it returns, or just reload the page.

1

Editing a community using a remote account breaks the community's local url.

If you create a community and you invite a mod from another instance, and that mod edits that community description, then that community's local url will break. By local url I mean the one where you go to https:instance.tld/c/community_name. The community will also not appear in "local communities".

However the "remote" url will work. This is the one which is formatted like https://instance.tld/c/[email protected]

You can currently (19/06/2023) see this effect in [email protected] (See working version)

The fix is pretty simple, you just need to set the "local" field in your postgresql DB to true. It's a single command inside your postgresql

sql update community set local='t' where actor_id='https://instance.tld/c/community_name';

If you don't know how to enter your postgresql DB in docker, this is the command

bash docker exec -it <postgres-container-name> psql -U <db user> -d <db name>

So for example, if I wanted to fix https://lemmy.dbzer0.com/c/flashcarts, I would write:

sql update community set local='t' where actor_id='https://lemmy.dbzer0.com/c/flashcarts';

Obviously try to avoid remote mods editing community descriptions if you can help it.

11

Trying to register username that already exists can cause an endless load.

github.com Error when creating a user with a non-unique name. 路 Issue #2955 路 LemmyNet/lemmy

This happens with any error, not just with email verification. For example here's the log if I try to sign up when registration is closed 2023-06-07T18:03:35.070511Z ERROR HTTP request{http.method=...

Error when creating a user with a non-unique name. 路 Issue #2955 路 LemmyNet/lemmy

This is being worked on. If your account registation gets stuck, assume you need to change your username

0