diff --git a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs index 48b4bb5bc..711c4e930 100644 --- a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs +++ b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs @@ -169,7 +169,7 @@ namespace Discord.WebSocket /// A representing the first viewable channel that the user has access to. /// public SocketTextChannel DefaultChannel => TextChannels - .Where(c => CurrentUser.GetPermissions(c).ViewChannel) + .Where(c => CurrentUser.GetPermissions(c).ViewChannel && c is not IThreadChannel) .OrderBy(c => c.Position) .FirstOrDefault(); ///