mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Deleted debug messages.
This commit is contained in:
parent
cbcd573fb5
commit
adf4213756
1 changed files with 1 additions and 5 deletions
|
@ -514,12 +514,10 @@ int is_msg_for_me(snac *snac, const xs_dict *c_msg)
|
||||||
else
|
else
|
||||||
if (actor_followers && strcmp(v, actor_followers) == 0) {
|
if (actor_followers && strcmp(v, actor_followers) == 0) {
|
||||||
/* if this message is for this actor's followers, are we one of them? */
|
/* if this message is for this actor's followers, are we one of them? */
|
||||||
if (following_check(snac, actor)) {
|
if (following_check(snac, actor))
|
||||||
snac_debug(snac, 0, xs_fmt("---> non-public msg for followers"));
|
|
||||||
return 6;
|
return 6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* accept if it's by someone we follow */
|
/* accept if it's by someone we follow */
|
||||||
char *atto = xs_dict_get(msg, "attributedTo");
|
char *atto = xs_dict_get(msg, "attributedTo");
|
||||||
|
@ -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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue