Ignore actions with empty message
This commit is contained in:
+1
-1
@@ -95,7 +95,7 @@ public class DirectiveBasedActionUtils {
|
|||||||
@Override
|
@Override
|
||||||
public boolean apply(String input) {
|
public boolean apply(String input) {
|
||||||
for (String prefix : IRRELEVANT_ACTION_PREFIXES) {
|
for (String prefix : IRRELEVANT_ACTION_PREFIXES) {
|
||||||
if (input.startsWith(prefix)) {
|
if (input.startsWith(prefix) || input.isEmpty()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user