diff options
author | default <nobody@localhost> | 2022-10-31 11:47:44 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-31 11:47:44 +0100 |
commit | 81d8923768f23396e299cdfd8e2e4f63c53ee9e3 (patch) | |
tree | 7809f095befba5c38402f10e1e47f91835b58580 | |
parent | 7d40affa6aa1334f0a4ad8aa58c4b8a2f08beab8 (diff) |
Actors being followed can also be MUTED.
-rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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")); |