From e8f046c0e616a7a0b10d1bb85abe887c1a374179 Mon Sep 17 00:00:00 2001 From: pranomostro Date: Fri, 3 Mar 2017 15:12:01 +0100 Subject: Now aborting when invited to audio conferences. --- ratox.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ratox.c') 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; } -- cgit v1.2.3