3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-24 19:52:36 +01:00

fix regex & trim

This commit is contained in:
reality 2013-07-01 17:33:19 +00:00
parent e1fe601269
commit 5cf5714640

View File

@ -8,11 +8,12 @@ var commands = function(dbot) {
var server = event.server,
quieter = event.user,
channel = event.input[1],
quietee = event.input[2];
quietee = event.input[2].trim();
if(_.isUndefined(channel)) {
channel = event.channel.name;
}
channel = channel.trim();
this.api.quiet(server, quietee, channel);
event.reply(dbot.t('quieted', { 'quietee': quietee }));
@ -238,7 +239,7 @@ var commands = function(dbot) {
commands['~ckick'].regex = [/^~ckick ([^ ]+) ([^ ]+) (.+)$/, 4];
commands['~nban'].regex = /^~nban ([\d\.^ ]+)?([^ ]+) (.+)$/;
commands['~quiet'].regex = /^~quiet (#[^ ]+ )?([^ ]+)$/;
commands['~quiet'].regex = /^~quiet (#[^ ]+ )?([^ ]+) ?$/;
return commands;
};