mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
"use strict";
|
|
|
|
const socket = require("../socket");
|
|
const store = require("../store").default;
|
|
|
|
socket.on("topic", function(data) {
|
|
const channel = store.getters.findChannel(data.chan);
|
|
|
|
if (channel) {
|
|
channel.channel.topic = data.topic;
|
|
}
|
|
});
|