thelounge/client/js/socket-events/topic.js

13 lines
249 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const socket = require("../socket");
const store = require("../store").default;
2017-05-18 22:08:54 +02:00
socket.on("topic", function(data) {
const channel = store.getters.findChannel(data.chan);
2018-07-12 20:36:44 +02:00
if (channel) {
channel.channel.topic = data.topic;
}
2017-05-18 22:08:54 +02:00
});