about summary refs log tree commit diff
path: root/app/lib/activitypub
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2020-11-20 16:54:00 -0600
committerStarfall <us@starfall.systems>2020-11-20 16:54:00 -0600
commit19548d0a4bc303ca8017599577e21a6d522eb7bd (patch)
treeef4ada7e8138aa510b0d54509e99ba1fc30995bc /app/lib/activitypub
parent383bb3804bdbd6caa442283cc96ef0cdbfdb4575 (diff)
parent24696458bf22c8529b49f89b2791e3e07583b7e0 (diff)
Merge branch 'glitch' into main
Diffstat (limited to 'app/lib/activitypub')
-rw-r--r--app/lib/activitypub/activity/delete.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/activitypub/activity/delete.rb b/app/lib/activitypub/activity/delete.rb
index 09b9e5e0e..2e5293b83 100644
--- a/app/lib/activitypub/activity/delete.rb
+++ b/app/lib/activitypub/activity/delete.rb
@@ -13,7 +13,7 @@ class ActivityPub::Activity::Delete < ActivityPub::Activity
 
   def delete_person
     lock_or_return("delete_in_progress:#{@account.id}") do
-      DeleteAccountService.new.call(@account, reserve_username: false)
+      DeleteAccountService.new.call(@account, reserve_username: false, skip_activitypub: true)
     end
   end