forked from AkkomaGang/akkoma
Delete attachments after object and cache cleanup
This commit is contained in:
parent
0709757e47
commit
81133702d4
1 changed files with 2 additions and 2 deletions
|
@ -180,10 +180,10 @@ def swap_object_with_tombstone(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
|
||||
|
|
Loading…
Reference in a new issue