Setting groupchat title when the groupchat isn't connected should

now return success.
This commit is contained in:
irungentoo 2014-11-15 16:29:19 -05:00
parent b808b0de2c
commit fef8dff0f2
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -1175,6 +1175,9 @@ int group_title_send(const Group_Chats *g_c, int groupnumber, const uint8_t *tit
memcpy(g->title, title, title_len);
g->title_len = title_len;
if (g->status != GROUPCHAT_STATUS_CONNECTED)
return 0;
if (send_message_group(g_c, groupnumber, GROUP_MESSAGE_TITLE_ID, title, title_len))
return 0;
else