mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
fixed friend add bugs
This commit is contained in:
parent
d8867b95c5
commit
a604de9017
|
@ -133,10 +133,26 @@ static void execute(ToxWindow* self, char* cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
num = m_addfriend(id_bin, (uint8_t*) msg, strlen(msg)+1);
|
num = m_addfriend(id_bin, (uint8_t*) msg, strlen(msg)+1);
|
||||||
|
switch (num) {
|
||||||
|
case -1:
|
||||||
|
wprintw(self->window, "Message is too long.\n");
|
||||||
|
break;
|
||||||
|
case -2:
|
||||||
|
wprintw(self->window, "That appears to be your own ID.\n");
|
||||||
|
break;
|
||||||
|
case -3:
|
||||||
|
wprintw(self->window, "Friend request already sent.\n");
|
||||||
|
break;
|
||||||
|
case -4:
|
||||||
|
wprintw(self->window, "Invalid ID.\n");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
wprintw(self->window, "Friend added as %d.\n", num);
|
wprintw(self->window, "Friend added as %d.\n", num);
|
||||||
on_friendadded(num);
|
on_friendadded(num);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
else if(!strcmp(cmd, "help")) {
|
else if(!strcmp(cmd, "help")) {
|
||||||
wattron(self->window, COLOR_PAIR(2) | A_BOLD);
|
wattron(self->window, COLOR_PAIR(2) | A_BOLD);
|
||||||
wprintw(self->window, "Commands:\n");
|
wprintw(self->window, "Commands:\n");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user