1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-22 16:13:02 +01:00

Remove some unnecessary code

This commit is contained in:
jfreegman 2021-11-12 10:15:47 -05:00
parent 4f26171e3f
commit 5dabaac804
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -482,13 +482,7 @@ void cmd_groupchat(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*arg
char name[TOX_GROUP_MAX_GROUP_NAME_LENGTH];
if (argv[1][0] == '\"') { /* remove opening and closing quotes */
snprintf(name, sizeof(name), "%s", &argv[1][1]);
len -= 2;
name[len] = '\0';
} else {
snprintf(name, sizeof(name), "%s", argv[1]);
}
size_t nick_length = tox_self_get_name_size(m);
char self_nick[TOX_MAX_NAME_LENGTH + 1];