summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-08-29 07:25:28 +0200
committerdefault <nobody@localhost>2024-08-29 07:25:28 +0200
commit53581361326f6f87a92ea47f03b09dd7b8dea631 (patch)
tree18b652748bfebbe67ad1aa41df61ea3c2105c702 /data.c
parent1022f6db87ea196630972123601639beb190b4c3 (diff)
Show bookmarked posts with an emoji.
Diffstat (limited to 'data.c')
-rw-r--r--data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/data.c b/data.c
index f062d7c..bb12aed 100644
--- a/data.c
+++ b/data.c
@@ -1562,7 +1562,7 @@ int is_muted(snac *snac, const char *actor)
int is_bookmarked(snac *user, const char *id)
/* returns true if this note is bookmarked */
{
- return object_user_cache_in(user, "bookmark", id);
+ return object_user_cache_in(user, id, "bookmark");
}