diff --git a/client/components/Chat.vue b/client/components/Chat.vue index 41f7ca11..b1447ed6 100644 --- a/client/components/Chat.vue +++ b/client/components/Chat.vue @@ -211,7 +211,7 @@ export default defineComponent({ if (props.channel.topic !== newTopic) { const target = props.channel.id; - const text = `/raw TOPIC ${props.channel.name} :${newTopic}`; + const text = `/topic ${newTopic}`; socket.emit("input", {target, text}); } };