diff options
Diffstat (limited to 'outboxPost.go')
-rw-r--r-- | outboxPost.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/outboxPost.go b/outboxPost.go index d54dd8e..0292e4f 100644 --- a/outboxPost.go +++ b/outboxPost.go @@ -550,13 +550,14 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { case "Delete": for _, e := range activity.To { actor := GetActorFromDB(db, e) - if actor.Id != "" { + if actor.Id != "" && actor.Id != Domain { if activity.Object.Replies != nil { for _, k := range activity.Object.Replies.OrderedItems { TombstoneObject(db, k.Id) } } TombstoneObject(db, activity.Object.Id) + UnArchiveLast(db, actor.Id) break } } |