snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 81d8923768f23396e299cdfd8e2e4f63c53ee9e3
parent 7d40affa6aa1334f0a4ad8aa58c4b8a2f08beab8
Author: default <nobody@localhost>
Date:   Mon, 31 Oct 2022 11:47:44 +0100

Actors being followed can also be MUTED.

Diffstat:
Mhtml.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/html.c b/html.c @@ -399,8 +399,9 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg) } else { s = html_button(s, "follow", L("Follow")); - s = html_button(s, "mute", L("MUTE")); } + + s = html_button(s, "mute", L("MUTE")); } s = html_button(s, "delete", L("Delete"));