Grégory Widmer
Grégory Widmer
Hello, I'm digging up issues as I have to time to spare. I confirm that the `Message#getChannel()` method can get the channel for you. If you need to know if...
Hello, I successfully did reproduce the issue with the following code : ```Java DiscordClient.create(Optional.ofNullable(System.getenv("DISCORD_TOKEN")).or(() -> Optional.ofNullable(args.length > 0 ? args[0] : null)).orElseThrow()) .withGateway(gatewayDiscordClient -> { Mono registerCommand = gatewayDiscordClient.on(ReadyEvent.class) .flatMap(ignored...
Hello, I wrote a fix in #1176
> Thanks, this PR can also add a few docs? Done, I added Javadoc on the getParent methods and updated this PR to provide migration suggestions.
Oops, probably my bad when I wrote https://github.com/Discord4J/Discord4J/pull/1126 even after review. ~~However, that is kinda weird because I am using this to perform some actions in my bots, maybe it...
I'm publishing a snapshot on my own nexus and writing the PR, the easiest solution is updating the ThreadChannel#getParent method signature, that would introduce a breaking change but as 3.3.0...
Here is a simple reproduction code with some minor logging to check it out : ```Java import discord4j.core.DiscordClient; import discord4j.core.event.domain.message.MessageCreateEvent; import discord4j.core.object.entity.channel.ThreadChannel; import reactor.core.publisher.Mono; import java.util.Optional; public class Main {...
Hello, I proposed a fix in #1129. When trying to ue the provided Snowflakes, we now have the correct formatting, even if Discord response is the same : ``` Exception...
Hello, I'm facing the same issue. I just installed the plugin on IntelliJ Ultimate. I'm using Yet another emoji support v1.0.7. IntelliJ info : IntelliJ IDEA 2021.3 (Ultimate Edition) Build...
I confirm this fixes the compilation under Debian 12 (Bookworm). I find quite surprising that the main branch has some compilation issues like that, don't you have any validation workflow...