about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-01-24 09:49:38 +0000
committerEric Wong <e@80x24.org>2023-01-24 10:07:55 +0000
commit3c997cf32dea4a19d1c16e4c17ef974a3a647576 (patch)
treeee8515002f0c4098a95712d96a0e31c249790936
parent4c371ef706ba5d5d0487ff8a9e4b75d168a6e267 (diff)
downloadpublic-inbox-3c997cf32dea4a19d1c16e4c17ef974a3a647576.tar.gz
It was a harmless negation, I must've pasted a line from a diff
and forgotten to chop off the first character :x

Fixes: 6f5b238bae5c "solver: early make hints detection more robust"
-rw-r--r--lib/PublicInbox/SolverGit.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm
index 16521ba7..38fba0ca 100644
--- a/lib/PublicInbox/SolverGit.pm
+++ b/lib/PublicInbox/SolverGit.pm
@@ -82,7 +82,7 @@ sub solve_existing ($$) {
         my ($oid_full, $type, $size) = $git->check($oid_b);
 
         if ($oid_b eq ($oid_full // '') || (defined($type) &&
--                                (!$self->{have_hints} || $type eq 'blob'))) {
+                                (!$self->{have_hints} || $type eq 'blob'))) {
                 delete $want->{try_gits};
                 return [ $git, $oid_full, $type, int($size) ]; # done, success
         }