logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: d60fd87e0191ad05d8dd7f2e8d7d265db6f168d3
parent: 94230fe565cf20ba10f6d0cd6f090a4520c174ca
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Wed,  3 Jan 2018 00:38:02 +0100

Don't leave behind husk of remotely-deleted profile (#6159)

There's no reason for an Account record to persist after Delete->Actor is received. SuspendAccountService is necessary to make sure deleted toots get sent over streaming API properly and home feeds get cleaned up. By removing Account record, we can ensure that if in the future the account is restored remotely (or username reused), it can start with a clean slate.

Diffstat:

Mapp/lib/activitypub/activity/delete.rb1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/app/lib/activitypub/activity/delete.rb b/app/lib/activitypub/activity/delete.rb @@ -13,6 +13,7 @@ class ActivityPub::Activity::Delete < ActivityPub::Activity def delete_person SuspendAccountService.new.call(@account) + @account.destroy! end def delete_note