diff options
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | outboxPost.go | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -69,7 +69,7 @@ func main() { FollowingBoards = GetActorFollowingDB(db, Domain) - StartupArchive(db) + go StartupArchive(db) go CheckInactive(db) 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 } } |