Skip to content

Commit

Permalink
dl/remcheck: fix an off-by-one error in the versions count
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Jun 11, 2024
1 parent 9c78956 commit 8f7f754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dl/remcheck.pl
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ sub geturl {
my ($cl, $st);

($cl, $st) = content_length(@data);
my $lasttried = 1;

my $lasttried = 0;
if(!$st && $versionembedded) {
#
# Only scan for older URLs if the $version is part of it
Expand Down

0 comments on commit 8f7f754

Please sign in to comment.