thelounge/src/plugins/irc-events/error.js
2016-04-07 16:04:28 -04:00

23 lines
490 B
JavaScript

var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("errors", function(data) {
var lobby = network.channels[0];
var msg = new Msg({
type: Msg.Type.ERROR,
text: data.message,
});
client.emit("msg", {
chan: lobby.id,
msg: msg
});
if (!network.connected) {
if (data.cmd === "ERR_NICKNAMEINUSE") {
var random = irc.user.nick + Math.floor(10 + (Math.random() * 89));
irc.nick(random);
}
}
});
};