From cfaa5cfd4e6d7facb8c98bf33addecd4be11e9b0 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Mon, 17 Apr 2023 13:04:10 -0700 Subject: [PATCH] Fix inconsistent argument --- lib/PBot/Plugin/RemindMe.pm | 2 +- lib/PBot/VERSION.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/PBot/Plugin/RemindMe.pm b/lib/PBot/Plugin/RemindMe.pm index cf826eea..3834b432 100644 --- a/lib/PBot/Plugin/RemindMe.pm +++ b/lib/PBot/Plugin/RemindMe.pm @@ -473,7 +473,7 @@ sub add_reminder($self, %args) { } # 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}; # remove from SQLite database diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index ca075fdd..fad4499c 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,7 +25,7 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4650, + BUILD_REVISION => 4651, BUILD_DATE => "2023-04-17", };