We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abfe290 commit 460fe6eCopy full SHA for 460fe6e
src/main/groovy/net/zomis/duga/tasks/CommentsScanTask.groovy
@@ -116,7 +116,7 @@ public class CommentsScanTask implements Runnable {
116
117
double programmersMLscore(def comment) {
118
String text = comment.body_markdown
119
- if (!text.contains("programmers")) {
+ if (!text.toLowerCase().contains("programmers")) {
120
// No need to check with the Machine Learning system in this case
121
return -1;
122
}
0 commit comments