tNow aborting when invited to audio conferences. - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit e8f046c0e616a7a0b10d1bb85abe887c1a374179
 (DIR) parent 0cf60b85c697629f834ea20c7c22011359bb3850
 (HTM) Author: pranomostro <pranomestro@gmail.com>
       Date:   Fri,  3 Mar 2017 15:12:01 +0100
       
       Now aborting when invited to audio conferences.
       
       Diffstat:
         M ratox.c                             |       7 ++++++-
       
       1 file changed, 6 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -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;
                }