fix: ghost channel when trying to join a channel that doesn't exist

This commit is contained in:
Stone_Red
2026-02-24 21:45:33 +01:00
parent 5391d2cb1c
commit 24a5bdb9a1
3 changed files with 10 additions and 10 deletions
+2
View File
@@ -15,6 +15,8 @@ public record MessageDto(
long? AttachmentFileSize = null,
List<EmbedDto>? Embeds = null);
public record JoinChannelResult(bool Success, List<MessageDto> History, string? Error = null);
public record ChannelDto(
Guid Id,
string Name,