tail/users: fix warning when used with old log files

This commit is contained in:
Juerd Waalboer 2023-11-02 04:44:24 +01:00
parent 1156864fd2
commit df8c84672d
3 changed files with 5 additions and 1 deletions

View file

@ -18,6 +18,8 @@ sub command :Tab(tail) ($self, $cart, $command, @) {
RevBank::Users::is_hidden($u) and next;
shift @lines if @lines == $n;
$qty = 1 if $qty eq 'EUR'; # log files before commit 63f81e37 (2019-11-05)
push @lines, [$dt, $u, ($dir eq 'GAIN' ? "+ $amount" : $amount), $desc, $qty];
}
close $fh;

View file

@ -68,6 +68,8 @@ sub _grep($user) {
$c eq 'CHECKOUT' or next; # real check after expensive split
lc($u) eq $user or next;
$qty = 1 if $qty eq 'EUR'; # log files before commit 63f81e37 (2019-11-05)
push @lines, sprintf "%s %8s %s%-s", (
$dt =~ s/_/ /r,
$dir eq 'GAIN' ? "+ $amount" : $amount, # like R::A->string_flipped

View file

@ -17,7 +17,7 @@ use RevBank::Global;
use RevBank::Messages;
use RevBank::Cart;
our $VERSION = "4.1.0";
our $VERSION = "4.1.1";
our %HELP1 = (
"abort" => "Abort the current transaction",
);