thelounge/client/js/socket-events/nick.js
Pavel Djundik 2f635069e0 Move vuex state to a separate file and reorganize some code
Co-Authored-By: Tim Miller-Williams <timmw@users.noreply.github.com>
2019-11-25 20:12:54 +02:00

13 lines
225 B
JavaScript

"use strict";
const socket = require("../socket");
const {findNetwork} = require("../vue");
socket.on("nick", function(data) {
const network = findNetwork(data.network);
if (network) {
network.nick = data.nick;
}
});