hirc

IRC client
Log | Files | Refs

commit f8a0ff0167a6856bf549cc4959ab41b33e95d34e
parent d63af8754621da0e328d0cd84a43db37ad57c544
Author: hhvn <dev@hhvn.uk>
Date:   Sat, 23 Apr 2022 15:43:26 +0100

/ignore list displays actual noact status

Diffstat:
Msrc/commands.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/commands.c b/src/commands.c @@ -1580,7 +1580,7 @@ command_ignore) { for (p = ignores, i = 1; p; p = p->next, i++) if (!serv || !p->server || strcmp(server->name, p->server) == 0) hist_format(selected.history, Activity_none, HIST_UI|HIST_NIGN, "SELF_IGNORES_LIST %d %s %s %s :%s", - i, p->server ? p->server : "ANY", noact ? "yes" : "no", p->format ? p->format : "ANY", p->text); + i, p->server ? p->server : "ANY", p->noact ? "yes" : "no", p->format ? p->format : "ANY", p->text); hist_format(selected.history, Activity_none, HIST_UI, "SELF_IGNORES_END :End of ignore list"); return; }