This is in regard to Lemmy.world blocking piracy communities from other instances. This post is not about whether you agree with the decision. It’s about how the admins informed their users.

A week ago Lemmy.world announced their Discord server. This wasn’t very well received (about 25% downvotes, which is rather bad compared to other announcements). The comments on that post were turned off, presumably to avoid backlash.

Before that, announcements about the instance used to be posted to !lemmyworld@lemmy.world. This time, the information was posted on the Discord server instead.

I don’t agree with this. Having to use a proprietary platform to participate in an open-source one goes against the very purpose for me, especially when the new solution isn’t really an improvement (as before the information about the platform was closer to it).

Edit: Corrected the announcements community name.

Update: Lemmy.world finally released an announcement and promised they would inform about similar actions and gather feedback in advance in future.

  • Skull giver@popplesburger.hilciferous.nl
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    2
    ·
    1 year ago

    As an admin you can use your special admin powers to pin posts.

    I would like Lemmy to have a “don’t defederate” or “only internal votes” checkbox for server-only posts, though.

    In theory you could also drop external votes for an a community. Here’s an SQL query I quickly threw together to select all upvotes submitted to a community that don’t come from the server the community is hosted on:

    select post_like.id, community_id, community.actor_id, voter.actor_id 
        from post
        inner join community on community.id = post.community_id
        inner join post_like on post_like.post_id = post.id
        inner join person voter on (
            voter.instance_id != community.instance_id and voter.id = post_like.person_id)
        where community.id = ?
    

    You’ll need to change select...from to delete from to wipe the votes from the database. I imagine it’ll take a while to complete, but on smaller servers it should be feasible? You could also add something like and post_like.score = - 1 to only delete downvotes.