diff options
author | FChannel <> | 2021-06-06 01:37:48 -0700 |
---|---|---|
committer | FChannel <> | 2021-06-06 01:37:48 -0700 |
commit | 6e67995a4f659987f6688ba6c9e2fec9c40e9cac (patch) | |
tree | 6ec0a8ac017a9a2165c48c8b50cad6dbbc4bd375 /outboxPost.go | |
parent | 3efbc7fad19d5927e479258e94c62ae26e334f66 (diff) |
changed naming to reflect more of what is being done for deleting or tombstone of an object
Diffstat (limited to 'outboxPost.go')
-rw-r--r-- | outboxPost.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 } } |