Skip to content

Commit

Permalink
Update issue_scanner.js
Browse files Browse the repository at this point in the history
github keywork和owner不一致的bug
  • Loading branch information
15669072513 authored Feb 22, 2024
1 parent f518185 commit e686333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/issue_scanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ const issueScanner = {
resultsArray = resultsArray.filter(res => res.duration != null && res.duration < config.generalConfig.dangerousIssuesConfig.mustReplyInXDays)
if (resultsArray.length > 0) {
resultsArray.forEach((result) => {
dangerousIssueDAO.insert(result.duration, result.project, result.title, result.url, result.keyword);
dangerousIssueDAO.insert(result.duration, result.project, result.title, result.url, owner);
});
} else {
dangerousIssueDAO.insert(null, null, null, null, owner)
Expand Down

0 comments on commit e686333

Please sign in to comment.