StdinReader: restore `from` to pbot@stdin

This commit is contained in:
Pragmatic Software 2021-06-24 19:31:08 -07:00
parent 1140d1fbb4
commit 19f0644966
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ sub stdin_reader {
my $botnick = $self->{pbot}->{registry}->get_value('irc', 'botnick');
# process input as a bot command
return $self->{pbot}->{interpreter}->process_line($botnick, $botnick, "stdin", "pbot", $input, 1);
return $self->{pbot}->{interpreter}->process_line('stdin@pbot', $botnick, "stdin", "pbot", $input, 1);
}
1;