commit 6056077031b238df7e7f4c275a26ba319f4eb1b2
parent a67a82d545559c87acf689d70f8c9539e4484e01
Author: default <nobody@localhost>
Date: Tue, 13 Dec 2022 16:02:41 +0100
Fixed crash when unfollowing.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;
}