You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this a UI / front end issue? Use the lemmy-ui repo.
Issue Summary
When editing a community as a remote user, it changes the community.local flag to false, causing the community return a 404. however it will now be accessible at https://[instance]/c/[community]@[instance].
The community now returns an error when accessing the original url (https://lemmy.ca/c/test) but accessing it using (https://lemmy.ca/c/[email protected]) works. In the database, the community.local field is now set to false. updating it back to true fixes the 404 on the original url.
edit: you can fix this issue by editing the community with a local mod. i don't believe this works, sorry!
The text was updated successfully, but these errors were encountered:
Copying here from Matrix for ease of reference until this is fixed. The following **completely untested ** SQL should fix the issue
lemmy=# select id, actor_id from community where name='<your community name>';
lemmy=# update community set local='t' where id=<the correct id from above>;
Issue Summary
When editing a community as a remote user, it changes the
community.local
flag to false, causing the community return a 404. however it will now be accessible athttps://[instance]/c/[community]@[instance]
.Steps to Reproduce
community.local
field is now set tofalse
. updating it back totrue
fixes the 404 on the original url.edit:
you can fix this issue by editing the community with a local mod.i don't believe this works, sorry!The text was updated successfully, but these errors were encountered: