diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-06-20 17:38:19 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-06-20 17:38:19 (GMT) |
commit | dfea757fd085ca9386b96db58c5d2bcd6173a917 (patch) | |
tree | 9251fa1b1121fb0f90a569ecc5b31014d7e217b5 /Swift/Controllers/Chat/MUCController.cpp | |
parent | f6635d1eee1235710c61e3fad76a161959185323 (diff) | |
download | swift-contrib-dfea757fd085ca9386b96db58c5d2bcd6173a917.zip swift-contrib-dfea757fd085ca9386b96db58c5d2bcd6173a917.tar.bz2 |
Show subjects on MUC join.
Resolves: #472
Diffstat (limited to 'Swift/Controllers/Chat/MUCController.cpp')
-rw-r--r-- | Swift/Controllers/Chat/MUCController.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/Chat/MUCController.cpp b/Swift/Controllers/Chat/MUCController.cpp index 2f74713..6029a14 100644 --- a/Swift/Controllers/Chat/MUCController.cpp +++ b/Swift/Controllers/Chat/MUCController.cpp @@ -194,6 +194,10 @@ void MUCController::preHandleIncomingMessage(boost::shared_ptr<Message> message) /*Buggy implementations never send the status code, so use an incoming message as a hint that joining's done (e.g. the old ejabberd on psi-im.org).*/ receivedActivity(); joined_ = true; + + if (!message->getSubject().isEmpty() && message->getBody().isEmpty()) { + chatWindow_->addSystemMessage("The room subject is now: " + message->getSubject()); + } } void MUCController::handleOccupantRoleChanged(const String& nick, const MUCOccupant& occupant, const MUCOccupant::Role& oldRole) { |