diff options
author | David Phillips <david@sighup.nz> | 2019-06-22 13:10:17 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-06-22 13:10:17 +1200 |
commit | a02c227f944074434dea2f87cfb50f4df1eccad0 (patch) | |
tree | 806b25bded6c92b52d23306ccf2706a1af6fcd9b /idalius.pl | |
parent | a21d52d884ac0435888c087bc0ba71a44a3f05b1 (diff) | |
download | idalius-a02c227f944074434dea2f87cfb50f4df1eccad0.tar.xz |
Send forward ping to irc object, not POE kernel
Diffstat (limited to 'idalius.pl')
-rwxr-xr-x | idalius.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -150,7 +150,7 @@ sub run_command { # a connection has fallen over otherwise. sub custom_ping { my ($poek) = $_[KERNEL]; - $poek->yield(userhost => $irc->nick_name()); + $irc->yield(userhost => $irc->nick_name()); $poek->delay(custom_ping => $ping_delay); } |