mirror of
https://github.com/thelounge/thelounge
synced 2024-11-24 04:53:09 +00:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
"use strict";
|
|
|
|
const socket = require("../socket");
|
|
const {findChannel} = require("../vue");
|
|
|
|
socket.on("topic", function(data) {
|
|
const channel = findChannel(data.chan);
|
|
|
|
if (channel) {
|
|
channel.channel.topic = data.topic;
|
|
}
|
|
});
|