aboutsummaryrefslogtreecommitdiff
path: root/OutboxPost.go
diff options
context:
space:
mode:
authorFChannel <=>2021-02-19 01:00:53 -0800
committerFChannel <=>2021-02-19 01:00:53 -0800
commit28e256f18f96d9afdcb903b3bc3daf93747c2195 (patch)
tree519a163e8bddc10690d774231d97017ce02a5003 /OutboxPost.go
parent5cb76e8bf5b9c07d6c7980a403dc4faeea37c3b7 (diff)
cleaned up db functions
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 6483a27..61175be 100644
--- a/OutboxPost.go
+++ b/OutboxPost.go
@@ -46,7 +46,7 @@ func ParseOutboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) {
nObj.Actor = &act
nObj.Actor.Id = Domain + "/" + actor.Name
- nObj = writeObjectToDB(db, nObj)
+ nObj = WriteObjectToDB(db, nObj)
activity := CreateActivity("Create", nObj)
activity = AddFollowersToActivity(db, activity)
MakeActivityRequest(db, activity)