3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-25 09:50:40 +01:00

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') { } else if(event.action == '302') {
var match = event.params.match(/:(.+)(\*)?=([^@]+)@(.+)$/); var match = event.params.match(/:(.+)=([^@]+)@(.+)$/);
console.log(match);
if(match && _.has(this.userStack, event.server) && _.has(this.userStack[event.server], match[1])) { 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); }.bind(this);