ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

commit e8f046c0e616a7a0b10d1bb85abe887c1a374179
parent 0cf60b85c697629f834ea20c7c22011359bb3850
Author: pranomostro <pranomestro@gmail.com>
Date:   Fri,  3 Mar 2017 15:12:01 +0100

Now aborting when invited to audio conferences.

Diffstat:
Mratox.c | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 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; }