1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-30 01:56:45 +02:00

a couple fixes

This commit is contained in:
Jfreegman
2014-09-27 03:01:23 -04:00
parent 95dfea8d29
commit a9e5723ca4
6 changed files with 8 additions and 5 deletions

View File

@ -191,8 +191,11 @@ void cmd_avatar(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
return;
}
if (strlen(argv[1]) < 3)
/* turns the avatar off */
if (strlen(argv[1]) < 3) {
tox_set_avatar(m, TOX_AVATAR_FORMAT_NONE, (const uint8_t *) NULL, 0);
return;
}
if (argv[1][0] != '\"') {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Path must be enclosed in quotes.");