summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-31 11:47:44 +0100
committerdefault <nobody@localhost>2022-10-31 11:47:44 +0100
commit81d8923768f23396e299cdfd8e2e4f63c53ee9e3 (patch)
tree7809f095befba5c38402f10e1e47f91835b58580
parent7d40affa6aa1334f0a4ad8aa58c4b8a2f08beab8 (diff)
Actors being followed can also be MUTED.
-rw-r--r--html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c
index 811aeba..8b0d3d2 100644
--- 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"));