diff options
author | default <nobody@localhost> | 2023-12-17 18:40:26 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-12-17 18:40:26 +0100 |
commit | adf42137561ac671b1bad290c2ef5e2a492e46d4 (patch) | |
tree | b708ef21944a1ce9e80c8ee5ae0910e9320af70a /activitypub.c | |
parent | cbcd573fb50885382acf7013b5c367a5ea1feb9c (diff) |
Deleted debug messages.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/activitypub.c b/activitypub.c index 758c1b7..114e35c 100644 --- a/activitypub.c +++ b/activitypub.c @@ -514,10 +514,8 @@ int is_msg_for_me(snac *snac, const xs_dict *c_msg) else if (actor_followers && strcmp(v, actor_followers) == 0) { /* if this message is for this actor's followers, are we one of them? */ - if (following_check(snac, actor)) { - snac_debug(snac, 0, xs_fmt("---> non-public msg for followers")); + if (following_check(snac, actor)) return 6; - } } } @@ -542,8 +540,6 @@ int is_msg_for_me(snac *snac, const xs_dict *c_msg) } } - snac_debug(snac, 0, xs_fmt("is_msg_for_me() final")); - return 0; } |