forked from AkkomaGang/akkoma
Skip deactivated users in followers import
This commit is contained in:
parent
1d46944fbd
commit
8ad015ef64
1 changed files with 1 additions and 0 deletions
|
@ -55,6 +55,7 @@ defp import_following_from_activities do
|
||||||
WHERE
|
WHERE
|
||||||
activities.data ->> 'type' = 'Follow'
|
activities.data ->> 'type' = 'Follow'
|
||||||
AND activities.data ->> 'state' IN ('accept', 'pending', 'reject')
|
AND activities.data ->> 'state' IN ('accept', 'pending', 'reject')
|
||||||
|
AND NOT (followers.info ? 'deactivated' AND followers.info -> 'deactivated' @> 'true')
|
||||||
ORDER BY activities.updated_at DESC
|
ORDER BY activities.updated_at DESC
|
||||||
ON CONFLICT DO NOTHING
|
ON CONFLICT DO NOTHING
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue