3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Fix inconsistent argument

This commit is contained in:
Pragmatic Software 2023-04-17 13:04:10 -07:00
parent 860a6be156
commit cfaa5cfd4e
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ sub add_reminder($self, %args) {
} }
# delete a reminder by its id, from SQLite and the PBot event queue # delete a reminder by its id, from SQLite and the PBot event queue
sub delete_reminder($self, $id, $dont_dequeue) { sub delete_reminder($self, $id, $dont_dequeue = 0) {
return if not $self->{dbh}; return if not $self->{dbh};
# remove from SQLite database # remove from SQLite database

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4650, BUILD_REVISION => 4651,
BUILD_DATE => "2023-04-17", BUILD_DATE => "2023-04-17",
}; };