DANKE ESLINT
This commit is contained in:
parent
10130e3b5c
commit
c365236921
|
@ -23,6 +23,7 @@
|
||||||
"semi": [
|
"semi": [
|
||||||
"error",
|
"error",
|
||||||
"always"
|
"always"
|
||||||
]
|
],
|
||||||
|
"no-console": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -37,6 +37,8 @@ class irc {
|
||||||
this.socket.on("data", msg => {
|
this.socket.on("data", msg => {
|
||||||
msg = this.parse(msg);
|
msg = this.parse(msg);
|
||||||
let tmpuser = {};
|
let tmpuser = {};
|
||||||
|
let tmpchan = {};
|
||||||
|
let chans = [];
|
||||||
switch (msg.command) { // auslagern!
|
switch (msg.command) { // auslagern!
|
||||||
// WHOIS BEGIN
|
// WHOIS BEGIN
|
||||||
case "307": // Rizon Account
|
case "307": // Rizon Account
|
||||||
|
@ -82,7 +84,7 @@ class irc {
|
||||||
this.server.user.set( msg.params[1].toLowerCase(), tmpuser );
|
this.server.user.set( msg.params[1].toLowerCase(), tmpuser );
|
||||||
break;
|
break;
|
||||||
case "319": // Chanlist Todo
|
case "319": // Chanlist Todo
|
||||||
let tmpchan = new Map();
|
tmpchan = new Map();
|
||||||
tmpuser = {};
|
tmpuser = {};
|
||||||
if (this.server.user.has( msg.params[1].toLowerCase() )) {
|
if (this.server.user.has( msg.params[1].toLowerCase() )) {
|
||||||
tmpuser = this.server.user.get( msg.params[1].toLowerCase() );
|
tmpuser = this.server.user.get( msg.params[1].toLowerCase() );
|
||||||
|
@ -90,7 +92,7 @@ class irc {
|
||||||
tmpchan = tmpuser.channels;
|
tmpchan = tmpuser.channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
let chans = msg.params[2].trim().split(" ");
|
chans = msg.params[2].trim().split(" ");
|
||||||
for(let chan in chans) {
|
for(let chan in chans) {
|
||||||
chan = chans[chan].split("#");
|
chan = chans[chan].split("#");
|
||||||
tmpchan.set(`#${chan[1]}`, chan[0]);
|
tmpchan.set(`#${chan[1]}`, chan[0]);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user