forked from AkkomaGang/akkoma
Rewrite block fetch query
This commit is contained in:
parent
72b93d13f8
commit
1197ec10a8
1 changed files with 2 additions and 1 deletions
|
@ -366,8 +366,9 @@ def fetch_latest_block(%User{ap_id: blocker_id}, %User{ap_id: blocked_id}) do
|
||||||
fragment(
|
fragment(
|
||||||
"? @> ?",
|
"? @> ?",
|
||||||
activity.data,
|
activity.data,
|
||||||
^%{type: "Block", actor: blocker_id, object: blocked_id}
|
^%{type: "Block", object: blocked_id}
|
||||||
),
|
),
|
||||||
|
where: activity.actor == ^blocker_id,
|
||||||
order_by: [desc: :id],
|
order_by: [desc: :id],
|
||||||
limit: 1
|
limit: 1
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue