summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2011-09-26 15:06:54 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-09-26 15:07:02 (GMT)
commit60823cd43ea17d8e06f3ae4a06f3c92d71fb00e5 (patch)
tree9e93a7198b5d56980c977c9eeda256747330e796 /Swift/Controllers/Chat/MUCController.cpp
parent2680416456d722a4779322949f6ed230de3d422b (diff)
downloadswift-60823cd43ea17d8e06f3ae4a06f3c92d71fb00e5.zip
swift-60823cd43ea17d8e06f3ae4a06f3c92d71fb00e5.tar.bz2
Set/Update empty subjects
Resolves: #1000
Diffstat (limited to 'Swift/Controllers/Chat/MUCController.cpp')
-rw-r--r--Swift/Controllers/Chat/MUCController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/MUCController.cpp b/Swift/Controllers/Chat/MUCController.cpp
index ca1509e..8fcef8c 100644
--- a/Swift/Controllers/Chat/MUCController.cpp
+++ b/Swift/Controllers/Chat/MUCController.cpp
@@ -340,7 +340,7 @@ void MUCController::preHandleIncomingMessage(boost::shared_ptr<MessageEvent> mes
receivedActivity();
joined_ = true;
- if (!message->getSubject().empty() && message->getBody().empty()) {
+ if (message->hasSubject() && message->getBody().empty()) {
chatWindow_->addSystemMessage(str(format(QT_TRANSLATE_NOOP("", "The room subject is now: %1%")) % message->getSubject()));;
chatWindow_->setSubject(message->getSubject());
doneGettingHistory_ = true;