Skip to content

Commit

Permalink
revert connection targets min_count to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Jul 26, 2024
1 parent be335ce commit df21c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Travelynx/Model/Journeys.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ sub get_connection_targets {
my $threshold = $opt{threshold}
// DateTime->now( time_zone => 'Europe/Berlin' )->subtract( months => 4 );
my $db = $opt{db} //= $self->{pg}->db;
my $min_count = $opt{min_count} // 1;
my $min_count = $opt{min_count} // 3;
my $dest_id = $opt{eva};

if ( $opt{destination_name} ) {
Expand Down

0 comments on commit df21c20

Please sign in to comment.