this post was submitted on 11 Jun 2026
57 points (95.2% liked)

Fediverse

42479 readers
72 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, Mbin, etc).

If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration)

founded 3 years ago
MODERATORS
 

Hello! I’m excited to share that I’ve built a service that bridges Discord forum channels with the Fediverse, particularly with Lemmy communities!

In short: with the bot, you can either subscribe a Discord forum channel to an existing Fediverse community, or create a new federated community and assign a forum channel to it. Posts and comments are then synchronized between Discord and the Fediverse via ActivityPub.

Please note that the project is at a very early stage.

You can try it on your own on a dedicated Discord server I created:

https://discord.gg/8WXE9bZhbP

If you find it useful or interesting, or if you have any concerns about it, I am open to your feedback. Financial support for further development would also be very appreciated.

I have also created a dedicated community for this project, so you can write something there and the messages will be synchronized between Discord and the Fediverse:

[!discord_fediverse_bridge@bridge.nachitima.com](/c/discord_fediverse_bridge@bridge.nachitima.com)

To learn how the service works in more detail, you can read the README on the repository page:

https://github.com/denikryt/discord-fediverse-bridge

And by the way, this post was created in Discord πŸ™‚

you are viewing a single comment's thread
view the rest of the comments
[–] Lodra@programming.dev 1 points 4 days ago (2 children)

Awesome idea! I wonder if there’s some reasonable mechanism for grouping discord messages into a single post? E.g. time bound: the previous message was greater than 5m ago so the next message is a new post and otherwise, it’s a reply to the latest post. Food for thought!

[–] waldfee@feddit.org 1 points 3 days ago (1 children)

If I understood correctly the bridge requires the Forum type channel on the discord side, so posts can be mapped 1 to 1 into the fediverse.

To sort the replies into a lemmy-style thread the timing could be a decent way to group them, but the resulting thread would look less like a tree and more like multiple, possibly quite long chains of comments. This would also assume that Discordians only ever answer to the last message in the chat, which isn't actually the case. I think the only way to fix this would be to utilise some sort of natural language processing to figure out which message they're replying to, though I'd be curious how easy/difficult it would be to get decent results out of that

[–] nachitima@bridge.nachitima.com 1 points 3 days ago (1 children)

There is also a way to turn on a slow mode on discord channel side specifically to prevent very frequent message sending

[–] waldfee@feddit.org 1 points 3 days ago (1 children)

Would slow mode merge multiple small messages or simply wait a bit and send them all in one payload?

Simply wait a bit between sending messages. There would be enough time to edit the first message and add a follow up instead of sending a new one πŸ™‚

Yeah that could be a safety mechanism for that kind of discord users who split a single thought into single messages. The user experience across platforms is different, for sure. Discord is more conducive to this type of communication.

I don't see any reliable workarounds for this, except for just knowing where you write and how it works. Methods, like you suggested, would be pretty hard to implement and they are more like a workaround from people who don't know how messages are displayed in Lemmy for example. Or simply don't want to write long texts.

I'm totally ok with writing longreads, I like it πŸ™‚

But I think it would make sense to add some sort of information about the Fediverse to the bridge registration page for example. So an uninformed user could learn first before actually starting to write. Thank you