fuck regex

This commit is contained in:
reality 2013-06-09 17:42:41 +00:00
parent a395b17218
commit 9c6b78863e

View File

@ -38,10 +38,10 @@ var nickserv = function(dbot) {
}
}
} else if(event.action == '302') {
var match = event.params.match(/:(.+)(\*)?=([^@]+)@(.+)$/);
console.log(match);
var match = event.params.match(/:(.+)=([^@]+)@(.+)$/);
if(match && _.has(this.userStack, event.server) && _.has(this.userStack[event.server], match[1])) {
this.userStack[event.server][match[1]](match[4].trim());
match[1] = match[1].replace('\*', '');
this.userStack[event.server][match[1]](match[3].trim());
}
}
}.bind(this);