Factoids: fix `factrem`/`forget`

Somehow I missed the `remove()` subroutine when converting
to subroutine signatures...
This commit is contained in:
Pragmatic Software 2023-05-07 13:47:25 -07:00
parent 2c36f624b2
commit 329c8db33c
2 changed files with 3 additions and 4 deletions

View File

@ -98,8 +98,7 @@ sub add($self, $type, $channel, $owner, $trigger, $action, $dont_save = 0) {
$self->{storage}->add($channel, $trigger, $data, $dont_save);
}
sub remove($self) {
my ($channel, $trigger) = @_;
sub remove($self, $channel, $trigger) {
$channel = '.*' if $channel !~ /^#/;
return $self->{storage}->remove($channel, $trigger);
}

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4660,
BUILD_DATE => "2023-05-05",
BUILD_REVISION => 4665,
BUILD_DATE => "2023-05-07",
};
sub initialize {}