1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 17:17:46 +02:00

Refactored cmd_video function

This commit is contained in:
cnhenry 2015-08-14 00:18:01 -05:00
parent b7e613de32
commit 619fdc1098

View File

@ -260,7 +260,6 @@ void cmd_video(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[M
goto on_error;
}
if ( this_call->vin_idx == -1 ) {
if ( !self->stb->connection ) {
error_str = "Friend is offline.";
goto on_error;
@ -271,10 +270,10 @@ void cmd_video(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[M
goto on_error;
}
if ( this_call->vin_idx == -1 )
callback_video_starting(self->num);
} else {
else
callback_video_end(self->num);
}
return;
on_error: