3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-05 02:48:50 +02:00

Fix mismatching WHO id if no WHO replies

This commit is contained in:
Pragmatic Software 2016-09-13 12:43:27 -07:00
parent 1f03985178
commit 754d38b50e

View File

@ -234,6 +234,7 @@ sub send_who {
if (not exists $who_cache{$id}) { if (not exists $who_cache{$id}) {
$who_cache{$id} = $channel; $who_cache{$id} = $channel;
$who_queue{$id} = $channel; $who_queue{$id} = $channel;
$last_who_id = $id;
last; last;
} }
} }