mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
mastoapi: show any boosted note, not only by us.
This commit is contained in:
parent
c8975f935a
commit
b08d455295
1 changed files with 2 additions and 2 deletions
|
@ -1309,10 +1309,10 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||||
|
|
||||||
/* is this message from a person we don't follow? */
|
/* is this message from a person we don't follow? */
|
||||||
if (strcmp(atto, snac1.actor) && !following_check(&snac1, atto)) {
|
if (strcmp(atto, snac1.actor) && !following_check(&snac1, atto)) {
|
||||||
/* if we didn't boost it, discard */
|
/* discard if it was not boosted */
|
||||||
xs *idx = object_announces(id);
|
xs *idx = object_announces(id);
|
||||||
|
|
||||||
if (xs_list_in(idx, snac1.md5) == -1)
|
if (xs_list_len(idx) == 0)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue