Skip to content

Commit

Permalink
Fixed URL bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-mulligan committed Oct 9, 2023
1 parent 8cf961c commit e8f7d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patchfinder/src/main/java/patches/PatchFinderThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ else if(commitCount <= PatchFinderEnvVars.getCloneCommitLimit())
private void findPatchCommitsFromUrl(ArrayList<PatchCommit> foundPatchCommits, String cve, String patchSource, int commitCount) {
// Define page range
final int numPags = (int) Math.ceil((double) commitCount / 35);
final String baseCommitsUrl = patchSource + "/patches";
final String baseCommitsUrl = patchSource + "/commits";

// Query first page and get HEAD commit
try {
Expand Down

0 comments on commit e8f7d54

Please sign in to comment.