forked from AkkomaGang/akkoma
Use different index for object fetching.
This commit is contained in:
parent
261ec82451
commit
ec546baee9
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ def change(struct, params \\ %{}) do
|
|||
def get_by_ap_id(nil), do: nil
|
||||
def get_by_ap_id(ap_id) do
|
||||
Repo.one(from object in Object,
|
||||
where: fragment("? @> ?", object.data, ^%{id: ap_id}))
|
||||
where: fragment("(?)->>'id' = ?", object.data, ^ap_id))
|
||||
end
|
||||
|
||||
def get_cached_by_ap_id(ap_id) do
|
||||
|
|
Loading…
Reference in a new issue