mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
is_msg_for_me() also accepts msgs where a followed is cc'ed.
This commit is contained in:
parent
946c29773a
commit
23177e9395
1 changed files with 7 additions and 3 deletions
|
@ -304,12 +304,16 @@ int is_msg_for_me(snac *snac, xs_dict *c_msg)
|
||||||
xs_str *v;
|
xs_str *v;
|
||||||
|
|
||||||
while(xs_list_iter(&p, &v)) {
|
while(xs_list_iter(&p, &v)) {
|
||||||
/* explicitly for me? we're done */
|
/* explicitly for me? accept */
|
||||||
if (strcmp(v, snac->actor) == 0)
|
if (strcmp(v, snac->actor) == 0)
|
||||||
return 2;
|
return 2;
|
||||||
|
|
||||||
|
/* for someone we follow? (probably cc'ed) accept */
|
||||||
|
if (following_check(snac, v))
|
||||||
|
return 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* accept if it's from 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");
|
||||||
|
|
||||||
if (!xs_is_null(atto) && following_check(snac, atto))
|
if (!xs_is_null(atto) && following_check(snac, atto))
|
||||||
|
@ -320,7 +324,7 @@ int is_msg_for_me(snac *snac, xs_dict *c_msg)
|
||||||
if (!xs_is_null(irt)) {
|
if (!xs_is_null(irt)) {
|
||||||
xs *r_msg = NULL;
|
xs *r_msg = NULL;
|
||||||
|
|
||||||
/* try to get it */
|
/* try to get the replied message */
|
||||||
if (valid_status(object_get(irt, &r_msg))) {
|
if (valid_status(object_get(irt, &r_msg))) {
|
||||||
atto = xs_dict_get(r_msg, "attributedTo");
|
atto = xs_dict_get(r_msg, "attributedTo");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue