statiegeld_tokens: Fix data loss on undo

Wrote one big line because of missing \n.
This commit is contained in:
Juerd Waalboer 2023-04-14 21:01:01 +02:00
parent c71455fb0a
commit d194cb8dfa

View file

@ -143,7 +143,7 @@ sub _handle_undo($cart) {
$tid ne $undo_tid $tid ne $undo_tid
} @tokens; } @tokens;
return @tokens ? join(" ", $username, @tokens) : undef; return @tokens ? join(" ", $username, @tokens) . "\n" : undef;
}; };
} }
} }