Return nil for nil object requests.

This commit is contained in:
Roger Braun 2017-10-24 08:39:24 +02:00
parent b35ff8f755
commit 261ec82451

View file

@ -21,6 +21,7 @@ defmodule Pleroma.Object do
|> unique_constraint(:ap_id, name: :objects_unique_apid_index)
end
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}))