Lemmy maintainer. Interested in politics, video games, and many other things.
The problem is that languages on your instance’s version of /c/announcements are also limited to English and German for some reason. I thought this might be a bug in that the site languages would also apply to remote communities, but I cant reproduce that. One thing you can check is go into the db, and make sure that select * from local_site;
returns exactly one column. Then take the value of site_id
and run select * from site where id = **site_id**;
. This should show the domain and other data of your instance.
Anyway you should be able to solve it by refetching the community to your instance (by pasting the community url in the search field). If it worked then curl "https://lemmy.schuerz.at/api/v3/community?id=46" | jq.discussion_languages
should output an empty array.
Yes with Activitypub federation you generally have to trust server admins with the data they handle (similar with private messages). Though I suppose it would be possible for communities to anonymize votes when announcing them to followers, then only the admin of the community’s instance could see who voted.
When fetching a community or post for the first time, votes or comments are not fetched. You can subscribe, and will later receive new content.
Your instance is currently not configured correctly for federation. The following request should return json, but gives error 404: curl -H 'Accept: application/activity+json' https://lemido.freakspot.net/u/lemmy
(compare with curl -H 'Accept: application/activity+json' https://lemmy.ml/u/nutomic
). The default Lemmy installation has an nginx config which takes care of this.
This is a good find. It would make a lot of sense for Lemmy to format mentions in that way too. Could you open an issue in the Lemmy repo please?
By the way, the fetch problem you mention is already fixed in this pr (but not yet released).
I see your problem but I dont think this can be fixed with any rule change or Lemmy feature. It would be possible to let people access posts after they are removed by a mod, but that wont help if your account gets banned. Or if your account gets hacked and deleted. Or if the instance goes down permanently for some reason.
If you are worried about your content disappearing, you should keep backups. For example with an API client which regularly downloads everything to a local file. There is also a feature request for a functionality to export an archive with user data. Even better would be an external service like reveddit.com which reads content from the API and stores it.
I suggest you create a new post to discuss this problem, then more people can give their ideas and opinions.