summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-05-24 17:09:11 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-05-24 17:09:11 +0200
commitf4a6f8a400512118265ec1cc0f3872635ba4bef6 (patch)
tree42fdba4a60419489f6b2fc3fcce3322cedd055b2
parent1dc04eb45ad9d7208cbfa1d7eb046861ff43e0c2 (diff)
Increase suggestion time range to 4 months
-rwxr-xr-xlib/Travelynx.pm2
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;