products: clear products cache before reading products list

Fixes bug where a product would remain available if it is removed from
revbank.products during runtime.
This commit is contained in:
Juerd Waalboer 2023-09-18 00:00:33 +02:00
parent f2506bdc74
commit b3cd3833f1

View file

@ -10,6 +10,7 @@ sub read_products() {
state $mtime;
return \%products if $mtime and $mtime == -M $filename;
%products = ();
$mtime = -M $filename;
my $line = 0;