thelounge/client/js/socket-events/msg_special.ts

10 lines
278 B
TypeScript

import socket from "../socket";
import store from "../store";
import {switchToChannel} from "../router";
socket.on("msg:special", function (data) {
const channel = store.getters.findChannel(data.chan);
channel.channel.data = data.data;
switchToChannel(channel.channel);
});