diff options
Diffstat (limited to 'outboxGet.go')
-rw-r--r-- | outboxGet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/outboxGet.go b/outboxGet.go index acc1eee..4064f0b 100644 --- a/outboxGet.go +++ b/outboxGet.go @@ -16,7 +16,7 @@ func GetActorOutbox(w http.ResponseWriter, r *http.Request, db *sql.DB) { collection.TotalItems = GetObjectPostsTotalDB(db, actor) collection.TotalImgs = GetObjectImgsTotalDB(db, actor) - enc, _ := json.MarshalIndent(collection, "", "\t") + enc, _ := json.Marshal(collection) w.Header().Set("Content-Type", activitystreams) w.Write(enc) |