Hiding a draft deletes it.

This commit is contained in:
default 2024-09-06 10:51:30 +02:00
parent ac0c7bc2ed
commit 2ec86d363e

3
html.c
View File

@ -3336,6 +3336,9 @@ int html_post_handler(const xs_dict *req, const char *q_path,
else else
if (strcmp(action, L("Hide")) == 0) { /** **/ if (strcmp(action, L("Hide")) == 0) { /** **/
hide(&snac, id); hide(&snac, id);
/* also delete from the draft list */
draft_del(&snac, id);
} }
else else
if (strcmp(action, L("Limit")) == 0) { /** **/ if (strcmp(action, L("Limit")) == 0) { /** **/