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 c3d5c94 commit 913f411Copy full SHA for 913f411
app-ui/src/main/java/com/mercury/platform/ui/frame/titled/ChatScannerFrame.java
@@ -206,7 +206,9 @@ protected MessageMatcher match() {
206
if (!message.contains("] $") && !message.contains("] #")) {
207
return false;
208
}
209
- message = StringUtils.substringAfter(message, ":").toLowerCase();
+ final String separator = message.contains("] $") ? "] $" : "] #";
210
+ message = StringUtils.substringAfter(message, separator).toLowerCase();
211
+ message = StringUtils.substringAfter(message, ": ").toLowerCase();
212
return notContains.stream().noneMatch(message::contains)
213
&& contains.stream().anyMatch(message::contains);
214
};
0 commit comments