1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-29 06:25:35 +02:00

Fix bug sometimes causing join message spam on conference join

This commit is contained in:
jfreegman 2021-01-17 17:10:10 -05:00
parent 8464ea9a7a
commit 81eb58532e
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -792,7 +792,8 @@ static void conference_onConferencePeerNameChange(ToxWindow *self, Tox *m, uint3
snprintf(log_event, sizeof(log_event), "is now known as %s", (const char *) name); snprintf(log_event, sizeof(log_event), "is now known as %s", (const char *) name);
write_to_log(log_event, peer->name, ctx->log, true); write_to_log(log_event, peer->name, ctx->log, true);
} else { // this is kind of a hack; peers always join a group with no name set and then set it after // this is kind of a hack; peers always join a group with no name set and then set it after
} else if (timed_out(conferences[conferencenum].start_time, CONFERENCE_EVENT_WAIT)) {
const char *msg = "has joined the conference"; const char *msg = "has joined the conference";
line_info_add(self, true, name, NULL, CONNECTION, 0, GREEN, msg); line_info_add(self, true, name, NULL, CONNECTION, 0, GREEN, msg);
write_to_log(msg, name, ctx->log, true); write_to_log(msg, name, ctx->log, true);