escape nick in highlight regex pattern
This commit is contained in:
parent
f8e06d8e9a
commit
b10b8e2c50
|
@ -454,7 +454,7 @@ public class NotificationService {
|
||||||
// nick (matched in case-insensitive manner), followed by optional
|
// nick (matched in case-insensitive manner), followed by optional
|
||||||
// punctuation (for example "bob: i disagree" or "how are you alice?"),
|
// punctuation (for example "bob: i disagree" or "how are you alice?"),
|
||||||
// followed by another word boundary.
|
// followed by another word boundary.
|
||||||
return Pattern.compile("\\b" + nick + "\\p{Punct}?\\b",
|
return Pattern.compile("\\b" + Pattern.quote(nick) + "\\p{Punct}?\\b",
|
||||||
Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
|
Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue