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

13 lines
232 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
2019-11-16 18:24:03 +01:00
import socket from "../socket";
import store from "../store";
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
});