Delete attachments after object and cache cleanup

This commit is contained in:
Roman Chvanikov 2020-01-17 20:20:37 +03:00
parent 0709757e47
commit 81133702d4
1 changed files with 2 additions and 2 deletions

View File

@ -180,10 +180,10 @@ defmodule Pleroma.Object do
def delete(%Object{data: %{"id" => id}} = object) do
with {:ok, _obj} = swap_object_with_tombstone(object),
:ok <- delete_attachments(object),
deleted_activity = Activity.delete_all_by_object_ap_id(id),
{:ok, true} <- Cachex.del(:object_cache, "object:#{id}"),
{:ok, _} <- Cachex.del(:web_resp_cache, URI.parse(id).path) do
{:ok, _} <- Cachex.del(:web_resp_cache, URI.parse(id).path),
:ok <- delete_attachments(object) do
{:ok, object, deleted_activity}
end
end