Skip to content

Commit

Permalink
Fix pp not being imported when SkipScoreProcessor is set
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Dec 28, 2023
1 parent cbf59f5 commit e7cdd8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void queueNextBatch()
if (batch.Count == 0)
return;

runningBatches.Add(new BatchInserter(ruleset, batch.ToArray(), importLegacyPP: !watchMode, SkipExisting, SkipNew));
runningBatches.Add(new BatchInserter(ruleset, batch.ToArray(), importLegacyPP: !watchMode || SkipScoreProcessor, SkipExisting, SkipNew));
batch.Clear();
}
}
Expand Down

0 comments on commit e7cdd8e

Please sign in to comment.