diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-24 17:09:11 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-24 17:09:11 +0200 |
commit | f4a6f8a400512118265ec1cc0f3872635ba4bef6 (patch) | |
tree | 42fdba4a60419489f6b2fc3fcce3322cedd055b2 /lib/Travelynx.pm | |
parent | 1dc04eb45ad9d7208cbfa1d7eb046861ff43e0c2 (diff) |
Increase suggestion time range to 4 months
Diffstat (limited to 'lib/Travelynx.pm')
-rwxr-xr-x | lib/Travelynx.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 3e65963..d5c3aa2 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -1537,7 +1537,7 @@ sub startup { my $uid = $opt{uid} //= $self->current_user->{id}; my $threshold = $opt{threshold} // DateTime->now( time_zone => 'Europe/Berlin' ) - ->subtract( weeks => 6 ); + ->subtract( months => 4 ); my $db = $opt{db} //= $self->pg->db; my $min_count = $opt{min_count} // 3; |