summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authordaleharvey <daleharvey@users.sourceforge.net>2006-05-05 17:02:29 +0000
committerdaleharvey <daleharvey@users.sourceforge.net>2006-05-05 17:02:29 +0000
commit53608853ed5f6b10250f0a90b2c3aa9c7ebfca2d (patch)
treee95a710094994889f298361b4b324c39c5c16a3a /src
parentMore snapping cleanups. (diff)
downloadinkscape-53608853ed5f6b10250f0a90b2c3aa9c7ebfca2d.tar.gz
inkscape-53608853ed5f6b10250f0a90b2c3aa9c7ebfca2d.zip
Short term change to allow inkboard to participate in muc at least on gristle.org
(bzr r742)
Diffstat (limited to 'src')
-rw-r--r--src/jabber_whiteboard/chat-handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jabber_whiteboard/chat-handler.cpp b/src/jabber_whiteboard/chat-handler.cpp
index 1474be040..bdb840066 100644
--- a/src/jabber_whiteboard/chat-handler.cpp
+++ b/src/jabber_whiteboard/chat-handler.cpp
@@ -88,7 +88,7 @@ ChatMessageHandler::parse(LmMessage* message)
LmMessageNode* body = lm_message_node_get_child(root, "body");
if (body != NULL) {
gchar const* val = lm_message_node_get_value(body);
- if (strcmp(val, String::ucompose("%1 INKBOARD-JOINED", this->_sm->session_data->chat_handle).c_str()) == 0) {
+ if (strcmp(val, String::ucompose("%1 has become available", this->_sm->session_data->chat_handle).c_str()) == 0) {
return this->_finishConnection(); break;
} else {
return LM_HANDLER_RESULT_ALLOW_MORE_HANDLERS;