From 29bfd87d8b41dbdd43d45e8e4d0a338489a5074d Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Tue, 24 Feb 2026 20:10:15 +0100 Subject: [PATCH] fix: ghost channel when trying to join a channel that doesn't exist --- src/EchoHub.Core/DTOs/ChatDtos.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/EchoHub.Core/DTOs/ChatDtos.cs b/src/EchoHub.Core/DTOs/ChatDtos.cs index 3a7e624..24bf514 100644 --- a/src/EchoHub.Core/DTOs/ChatDtos.cs +++ b/src/EchoHub.Core/DTOs/ChatDtos.cs @@ -15,6 +15,8 @@ public record MessageDto( long? AttachmentFileSize = null, List? Embeds = null); +public record JoinChannelResult(bool Success, List History, string? Error = null); + public record ChannelDto( Guid Id, string Name,