object: normalize(): use object cache

This commit is contained in:
William Pitcock 2018-11-25 21:20:29 +00:00
parent e8570758f9
commit 5ba5df1321
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ defmodule Pleroma.Object do
Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id)))
end
def normalize(obj) when is_map(obj), do: Object.get_by_ap_id(obj["id"])
def normalize(ap_id) when is_binary(ap_id), do: Object.get_by_ap_id(ap_id)
def normalize(obj) when is_map(obj), do: normalize(obj["id"])
def normalize(ap_id) when is_binary(ap_id), do: get_cached_by_ap_id(ap_id)
def normalize(_), do: nil
if Mix.env() == :test do