summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-01-20 15:17:52 (GMT)
committerSwift Review <review@swift.im>2015-02-09 22:11:44 (GMT)
commit6b03bde42313bbc45c091930f0c4e6952924308b (patch)
tree2d4df7629005912231517d6683d3cf2d37e7a9c8 /Swift/Controllers/Chat/MUCController.cpp
parent6a4e622d9c406ea45bcc8c9740f666ad4a7e589f (diff)
downloadswift-6b03bde42313bbc45c091930f0c4e6952924308b.zip
swift-6b03bde42313bbc45c091930f0c4e6952924308b.tar.bz2
Fix sender text that is used for matching highlight rules
Old behavior: MUC group messages are matched against the nickname as sender. MUC 1-to-1 messages and classic 1-to-1 messages are matched against the display name as sender. New behavior: MUC group messages are matched against the nickname as sender. MUC 1-to-1 messages are matched against the nickname as sender. Classic 1-to-1 messages are matched against the bare JID as sender. Test-Information: Tested on Mac OS X 10.9.5 that a chat rule matching a nickname string and a rule matching a full JID are highlighted correctly. Change-Id: Icaee2c946e34fceb6b1d40561674030740555de1
Diffstat (limited to 'Swift/Controllers/Chat/MUCController.cpp')
-rw-r--r--Swift/Controllers/Chat/MUCController.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/Chat/MUCController.cpp b/Swift/Controllers/Chat/MUCController.cpp
index 70a638e..10d63a7 100644
--- a/Swift/Controllers/Chat/MUCController.cpp
+++ b/Swift/Controllers/Chat/MUCController.cpp
@@ -750,6 +750,10 @@ bool MUCController::isIncomingMessageFromMe(boost::shared_ptr<Message> message)
return nick_ == from.getResource();
}
+std::string MUCController::senderHighlightNameFromMessage(const JID& from) {
+ return from.getResource();
+}
+
std::string MUCController::senderDisplayNameFromMessage(const JID& from) {
return from.getResource();
}