diff options
author | default <nobody@localhost> | 2022-12-13 16:02:41 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-13 16:02:41 +0100 |
commit | 6056077031b238df7e7f4c275a26ba319f4eb1b2 (patch) | |
tree | cd4549fdc92c855c29dd32624b2a16e0fce20bb5 /data.c | |
parent | a67a82d545559c87acf689d70f8c9539e4484e01 (diff) |
Fixed crash when unfollowing.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |