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"
---
lib/PublicInbox/SolverGit.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
}