Fix recurring transactions calculator for after-the-fact updates

This commit is contained in:
Thomas Bloor 2018-05-24 15:16:28 +01:00
parent 898b6ff8f0
commit 07a36c2268

View file

@ -87,11 +87,10 @@ sub run {
return;
}
my $now = DateTime->now();
my $purchase_time = DateTime->new(
year => $now->year,
month => $now->month,
day => $now->day,
year => $datetime->year,
month => $datetime->month,
day => $datetime->day,
hour => $start_time_dt->hour,
minute => $start_time_dt->minute,
second => $start_time_dt->second,