statiegeld: fix warning

This commit is contained in:
Juerd Waalboer 2024-01-18 18:15:35 +01:00
parent 0db3e0ed81
commit 6aa33beedb
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,7 @@ sub hook_input { # args via @_ for mutable alias
$S or return;
# Extra newline before new "Scan products for ..." line.
print "\n" if $input eq "" and $split_input;
print "\n" if defined $input and $input eq "" and $split_input;
# Hijack 'help' command so it never reaches the 'help' plugin.
if ($split_input and $input eq "help") {

View file

@ -18,7 +18,7 @@ use RevBank::Messages;
use RevBank::Cart;
use RevBank::Prompt;
our $VERSION = "5.1.2";
our $VERSION = "5.1.3";
our %HELP1 = (
"abort" => "Abort the current transaction",
);