aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2018-09-11 23:13:45 +1200
committerDavid Phillips <david@sighup.nz>2018-09-11 23:13:45 +1200
commit83027a8d04b3d2be69d179d85ae9958637aa16f4 (patch)
tree03ce2775409e388154f80ee92c7b3f589e026b65
parent8645387b68f9a9f0e05c86f0a81c8a69263e84cb (diff)
downloadidalius-83027a8d04b3d2be69d179d85ae9958637aa16f4.tar.xz
DevNull: Add missing parameters to run_command
-rw-r--r--Plugin/DevNull.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/DevNull.pm b/Plugin/DevNull.pm
index e8a51e7..b29a71a 100644
--- a/Plugin/DevNull.pm
+++ b/Plugin/DevNull.pm
@@ -22,7 +22,7 @@ sub configure {
sub hush {
my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_;
- $run_command->($rest);
+ $run_command->($rest, $who, $where);
return;
}