forked from AkkomaGang/akkoma
thread visibility function: fix use of no longer used author variable
This commit is contained in:
parent
a591ab6112
commit
f3971cbde3
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ def up do
|
|||
WHERE COALESCE(activity.data->'object'->>'id', activity.data->>'object') = objects.data->>'id';
|
||||
|
||||
--- Fetch the author's AS2 following collection.
|
||||
SELECT COALESCE(author.follower_address, '') INTO author_fa FROM users WHERE users.ap_id = activity.actor;
|
||||
SELECT COALESCE(users.follower_address, '') INTO author_fa FROM users WHERE users.ap_id = activity.actor;
|
||||
|
||||
--- Prepare valid recipients array.
|
||||
valid_recipients := ARRAY[actor, public];
|
||||
|
|
Loading…
Reference in a new issue