diff --git a/src/components/markdown/Renderer.tsx b/src/components/markdown/Renderer.tsx index 57070002..47787a8e 100644 --- a/src/components/markdown/Renderer.tsx +++ b/src/components/markdown/Renderer.tsx @@ -168,7 +168,10 @@ export default function Renderer({ content, disallowBigEmoji }: MarkdownProps) { const id = args[0] as string, channel = client.channels.get(id); - if (channel?.channel_type === "TextChannel") { + if ( + channel?.channel_type === "TextChannel" || + channel?.channel_type === "VoiceChannel" + ) { return `[#${channel.name}](/server/${channel.server_id}/channel/${id})`; }