swap context clauses around

This commit is contained in:
FloatingGhost 2022-08-06 21:37:47 +01:00
parent 1faf54ab41
commit 3e8a069f2a
2 changed files with 4 additions and 3 deletions

View File

@ -57,12 +57,12 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
end)
end
defp get_context_id(%{data: %{"context_id" => context_id}}) when not is_nil(context_id),
do: context_id
defp get_context_id(%{data: %{"context" => context}}) when is_binary(context),
do: :erlang.crc32(context)
defp get_context_id(%{data: %{"context_id" => context_id}}) when not is_nil(context_id),
do: context_id
defp get_context_id(_), do: nil
# Check if the user reblogged this status

View File

@ -6,6 +6,7 @@ defmodule Pleroma.Repo.Migrations.RemoveNullObjects do
DELETE FROM objects
WHERE (data->>'type') is null;
"""
execute(statement)
end