snac2

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

commit 85d0f40e65c90e2c6c6b117e15e257ecb3a6b336
parent 2bf9134fda4c0adaad88f2d00549743faec0a4ac
Author: default <nobody@localhost>
Date:   Sat,  3 Dec 2022 21:34:10 +0100

From timeline_admire(), add to both caches.

Diffstat:
Mdata.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/data.c b/data.c @@ -807,9 +807,11 @@ int timeline_add(snac *snac, char *id, char *o_msg, char *parent, char *referrer void timeline_admire(snac *snac, char *o_msg, char *id, char *admirer, int like) /* updates a timeline entry with a new admiration */ { - /* if we are admiring this, add to the public timeline */ - if (!like && strcmp(admirer, snac->actor) == 0) + /* if we are admiring this, add to both timelines */ + if (!like && strcmp(admirer, snac->actor) == 0) { object_user_cache_add(snac, id, "public"); + object_user_cache_add(snac, id, "private"); + } object_admire(id, admirer, like);