mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Don't try to admire empty messages.
This commit is contained in:
parent
76bfc366ea
commit
bd0149ee0d
6
html.c
6
html.c
@ -1288,15 +1288,21 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
|
||||
|
||||
if (strcmp(action, L("Like")) == 0) {
|
||||
xs *msg = msg_admiration(&snac, id, "Like");
|
||||
|
||||
if (msg != NULL) {
|
||||
post(&snac, msg);
|
||||
timeline_admire(&snac, msg, id, snac.actor, 1);
|
||||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(action, L("Boost")) == 0) {
|
||||
xs *msg = msg_admiration(&snac, id, "Announce");
|
||||
|
||||
if (msg != NULL) {
|
||||
post(&snac, msg);
|
||||
timeline_admire(&snac, msg, id, snac.actor, 0);
|
||||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(action, L("MUTE")) == 0) {
|
||||
mute(&snac, actor);
|
||||
|
Loading…
Reference in New Issue
Block a user