v6.1.4: fix bug (0.00 balance account not usable)

Introduced in f2d09b4d
This commit is contained in:
Juerd Waalboer 2024-04-28 03:42:00 +02:00
parent 1c9c35d535
commit e3b054272d
2 changed files with 2 additions and 2 deletions

View file

@ -134,7 +134,7 @@ sub assert_user($username) {
my $user = $users->{ lc $username };
if ($user) {
Carp::croak("Account $username can't be used") if not balance $username;
Carp::croak("Account $username can't be used") if not defined balance $username;
return $user->[0];
}

View file

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