diff options
author | fiaxh <git@mx.ax.lt> | 2017-10-22 01:24:57 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-10-22 18:26:31 +0200 |
commit | e49fc134ddf4c1b4e22603b60ea44f59eec496a5 (patch) | |
tree | 123bb91b164e7dad994d94d843ea277517666699 /main/src/ui | |
parent | 9ea16b6d8568cb383eb1f469d1dc54bfcad4f188 (diff) | |
download | dino-e49fc134ddf4c1b4e22603b60ea44f59eec496a5.tar.gz dino-e49fc134ddf4c1b4e22603b60ea44f59eec496a5.zip |
Only match full words as mentions for notifications
fixes #185
Diffstat (limited to 'main/src/ui')
-rw-r--r-- | main/src/ui/notifications.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/src/ui/notifications.vala b/main/src/ui/notifications.vala index 313d0854..b3a373be 100644 --- a/main/src/ui/notifications.vala +++ b/main/src/ui/notifications.vala @@ -113,7 +113,9 @@ public class Notifications : Object { Conversation.NotifySetting notify = conversation.get_notification_setting(stream_interactor); if (notify == Conversation.NotifySetting.OFF) return false; Jid? nick = stream_interactor.get_module(MucManager.IDENTITY).get_own_jid(conversation.counterpart, conversation.account); - if (notify == Conversation.NotifySetting.HIGHLIGHT && nick != null && !message.body.contains(nick.resourcepart)) return false; + if (notify == Conversation.NotifySetting.HIGHLIGHT && nick != null) { + return Regex.match_simple("""\b""" + Regex.escape_string(nick.resourcepart) + """\b""", message.body, RegexCompileFlags.CASELESS); + } return true; } |