1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-14 18:53:04 +01:00

Fix bug causing group PM's to increment window notifications by 2 instead of 1

This commit is contained in:
jfreegman 2020-11-27 00:18:55 -05:00
parent 38004367a1
commit 28be56aad9
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -696,12 +696,12 @@ static void groupchat_onGroupPrivateMessage(ToxWindow *self, Tox *m, uint32_t gr
line_info_add(self, timefrmt, nick, NULL, IN_PRVT_MSG, 0, MAGENTA, "%s", msg); line_info_add(self, timefrmt, nick, NULL, IN_PRVT_MSG, 0, MAGENTA, "%s", msg);
write_to_log(msg, nick, ctx->log, false); write_to_log(msg, nick, ctx->log, false);
sound_notify(self, generic_message, NT_WNDALERT_0, NULL);
if (self->active_box != -1) { if (self->active_box != -1) {
box_silent_notify2(self, NT_NOFOCUS, self->active_box, "%s %s", nick, msg); box_notify2(self, generic_message, NT_WNDALERT_0 | NT_NOFOCUS | user_settings->bell_on_message,
self->active_box, "%s %s", nick, msg);
} else { } else {
box_silent_notify(self, NT_NOFOCUS, &self->active_box, self->name, "%s %s", nick, msg); box_notify(self, generic_message, NT_WNDALERT_0 | NT_NOFOCUS | user_settings->bell_on_message,
&self->active_box, self->name, "%s %s", nick, msg);
} }
} }