Check for empty string in_reply_to ids.

This commit is contained in:
lain 2018-11-02 17:33:51 +01:00
commit 45ebc8dd9a
2 changed files with 17 additions and 0 deletions

View file

@ -19,6 +19,8 @@ defmodule Pleroma.Web.CommonAPI.Utils do
end
end
def get_replied_to_activity(""), do: nil
def get_replied_to_activity(id) when not is_nil(id) do
Repo.get(Activity, id)
end