summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-12-13 16:02:41 +0100
committerdefault <nobody@localhost>2022-12-13 16:02:41 +0100
commit6056077031b238df7e7f4c275a26ba319f4eb1b2 (patch)
treecd4549fdc92c855c29dd32624b2a16e0fce20bb5 /data.c
parenta67a82d545559c87acf689d70f8c9539e4484e01 (diff)
Fixed crash when unfollowing.
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 b073840..eeda333 100644
--- a/data.c
+++ b/data.c
@@ -748,7 +748,7 @@ int follower_del(snac *snac, const char *actor)
{
int ret = object_user_cache_del(snac, actor, "followers");
- snac_debug(snac, 2, xs_fmt("follower_del %s %s", actor));
+ snac_debug(snac, 2, xs_fmt("follower_del %s", actor));
return ret == -1 ? 404 : 200;
}