IRCHandlers: restore missing space in departure messages

This commit is contained in:
Pragmatic Software 2021-07-01 21:07:27 -07:00
parent 53739e0184
commit d1a3a89c33
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ sub on_departure {
($nick, $user, $host) = $self->normalize_hostmask($nick, $user, $host);
my $text = uc ($event->{event}->type) . $args;
my $text = uc ($event->{event}->type) . ' ' . $args;
my $message_account = $self->{pbot}->{messagehistory}->get_message_account($nick, $user, $host);