diff options
author | FChannel <=> | 2021-02-02 00:51:05 -0800 |
---|---|---|
committer | FChannel <=> | 2021-02-02 00:51:05 -0800 |
commit | ea664188aa26a55b31c5b789cb4a98e33af7fc99 (patch) | |
tree | 106cb55fbcc706cdc6ec70283a6ddb3d3d095f86 /OutboxPost.go | |
parent | f5657459f6140aeded7a77bd85af492e3c6cdb13 (diff) |
turned of preload metadata, might turn on later
Diffstat (limited to 'OutboxPost.go')
-rw-r--r-- | OutboxPost.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OutboxPost.go b/OutboxPost.go index c5d5f2a..9d7c004 100644 --- a/OutboxPost.go +++ b/OutboxPost.go @@ -121,8 +121,7 @@ func ParseOutboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { SetActorFollowingDB(db, rActivity) MakeActivityRequest(db, activity) } - - w.Write([]byte("")) + break case "Delete": fmt.Println("This is a delete") @@ -572,7 +571,7 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { DeleteObject(db, k.Id) } } - TombstoneObjectFromCache(db, activity.Object.Id) + TombstoneObjectFromCache(db, activity.Object.Id) break } } |