From: daleharvey Date: Fri, 5 May 2006 17:02:29 +0000 (+0000) Subject: Short term change to allow inkboard to participate in muc at least on gristle.org X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=66f4c63e7c3f5501f6bf0d902b05ccbac55a6f8b;p=inkscape.git Short term change to allow inkboard to participate in muc at least on gristle.org --- 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;