snac2

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

commit dba063066025d8feed0e18dde91037c9bb503d53
parent a7bd9b63e4992018cade7c5c388bf30878389274
Author: default <nobody@localhost>
Date:   Fri, 12 Apr 2024 05:28:34 +0200

Commented out received unboosts (see code for an explanation).

Diffstat:
Mactivitypub.c | 7++++++-
Mdata.c | 2+-
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/activitypub.c b/activitypub.c @@ -1962,7 +1962,12 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) } else if (strcmp(utype, "Announce") == 0) { /** **/ - int status = object_unadmire(id, actor, 0); + int status = 200; + + /* commented out: if a followed user boosts something that + is requested and then unboosts, the post remains here, + but with no apparent reason, and that is confusing */ + //status = object_unadmire(id, actor, 0); snac_log(snac, xs_fmt("Unboost for %s %d", id, status)); } diff --git a/data.c b/data.c @@ -406,7 +406,7 @@ int index_del_md5(const char *fn, const char *md5) fclose(f); } else - status = 500; + status = 410; pthread_mutex_unlock(&data_mutex);