From 76d14acafa240ba9780a30061bd1b4663255f2fc Mon Sep 17 00:00:00 2001 From: irungentoo Date: Sat, 15 Nov 2014 16:42:13 -0500 Subject: [PATCH] Last fix didn't really work well. This one should work better. --- toxcore/group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toxcore/group.c b/toxcore/group.c index 244fbb16..1a17e83a 100644 --- a/toxcore/group.c +++ b/toxcore/group.c @@ -1175,7 +1175,7 @@ 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) + if (g->numpeers == 1) return 0; if (send_message_group(g_c, groupnumber, GROUP_MESSAGE_TITLE_ID, title, title_len))