aboutsummaryrefslogtreecommitdiff
path: root/OutboxPost.go
diff options
context:
space:
mode:
authorFChannel <=>2021-01-28 20:07:49 -0800
committerFChannel <=>2021-01-28 20:07:49 -0800
commit0d4cd485b5225cfa737842de6ba0e96d6d21722b (patch)
treee436f9596e5b34434e53753768455bd755ad8070 /OutboxPost.go
parent26db3d04944e838e6de5aeb736c59982ed226c48 (diff)
removed delete request inside DB delete
Diffstat (limited to 'OutboxPost.go')
-rw-r--r--OutboxPost.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/OutboxPost.go b/OutboxPost.go
index 7349b16..95a7714 100644
--- a/OutboxPost.go
+++ b/OutboxPost.go
@@ -556,7 +556,7 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) {
if actor.Id != "" {
for _, e := range activity.Object.Replies.OrderedItems {
TombstoneObjectFromCache(db, e.Id)
- DeleteObject(db, e.Id)
+ DeleteObject(db, e.Id)
}
TombstoneObjectFromCache(db, activity.Object.Id)
break