summaryrefslogtreecommitdiff
path: root/ratox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratox.c')
-rw-r--r--ratox.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ratox.c b/ratox.c
index d7d683d..27487de 100644
--- a/ratox.c
+++ b/ratox.c
@@ -492,8 +492,13 @@ cbconfinvite(Tox *m, uint32_t frnum, TOX_CONFERENCE_TYPE type, const uint8_t *co
struct invite *inv;
uint8_t id[TOX_PUBLIC_KEY_SIZE];
+ if(type != TOX_CONFERENCE_TYPE_TEXT) {
+ weprintf(": %d : Only text conference supported at the moment\n");
+ return;
+ }
+
if (!tox_friend_get_public_key(tox, frnum, id, NULL)) {
- weprintf(": %d: Key: Failed to get for invite\n", frnum);
+ weprintf(": %d : Key: Failed to get for invite\n", frnum);
return;
}