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 b0adb55b8f
commit 29bfd87d8b
+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,