From 6e67995a4f659987f6688ba6c9e2fec9c40e9cac Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sun, 6 Jun 2021 01:37:48 -0700 Subject: changed naming to reflect more of what is being done for deleting or tombstone of an object --- outboxPost.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'outboxPost.go') diff --git a/outboxPost.go b/outboxPost.go index 075b795..edbea65 100644 --- a/outboxPost.go +++ b/outboxPost.go @@ -567,10 +567,10 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { if actor.Id != "" { if activity.Object.Replies != nil { for _, k := range activity.Object.Replies.OrderedItems { - DeleteObject(db, k.Id) + TombstoneObject(db, k.Id) } } - DeleteObject(db, activity.Object.Id) + TombstoneObject(db, activity.Object.Id) break } } -- cgit v1.2.3