From fc823af25c5a66706add85943d7404be1038b553 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 8 Jul 2021 20:07:00 -0700 Subject: [PATCH] Plugins/RemindMe: correct `remindme` option value types --- Plugins/RemindMe.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Plugins/RemindMe.pm b/Plugins/RemindMe.pm index 20f8cb7b..98c2819f 100644 --- a/Plugins/RemindMe.pm +++ b/Plugins/RemindMe.pm @@ -74,12 +74,12 @@ sub cmd_remindme { Getopt::Long::Configure("bundling"); GetOptionsFromArray( \@opt_args, - 'r:i' => \$repeats, - 't:s' => \$time, - 'c:s' => \$channel, - 'm:s' => \$text, + 'r=i' => \$repeats, + 't=s' => \$time, + 'c=s' => \$channel, + 'm=s' => \$text, 'l:s' => \$list_reminders, - 'd:i' => \$delete_id + 'd=i' => \$delete_id ); return "$getopt_error -- $usage" if defined $getopt_error;