aboutsummaryrefslogtreecommitdiff
path: root/outboxPost.go
diff options
context:
space:
mode:
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 cc66677..45093b8 100644
--- a/outboxPost.go
+++ b/outboxPost.go
@@ -48,7 +48,7 @@ func ParseOutboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) {
nObj = WriteObjectToDB(db, nObj)
activity := CreateActivity("Create", nObj)
activity = AddFollowersToActivity(db, activity)
- MakeActivityRequest(db, activity)
+ go MakeActivityRequest(db, activity)
var id string
op := len(nObj.InReplyTo) - 1