diff options
author | FChannel <> | 2021-07-07 13:33:58 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-07 13:33:58 -0700 |
commit | 188c137e8ffee7fce6cb5e363b5ea5a3095318ef (patch) | |
tree | 022266bb75bc370928aad6cffc48989fcfef5b36 /main.go | |
parent | ca4444d74d7123edebedb4d7be713f739d2896ab (diff) |
made delete objects as thread and fixed following non-valid actor links
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -495,7 +495,9 @@ func main() { return } - MakeActivityRequestOutbox(db, followActivity) + if FingerActor(r.FormValue("follow")).Id != "" { + MakeActivityRequestOutbox(db, followActivity) + } var redirect string if(actor.Name != "main") { @@ -809,7 +811,7 @@ func main() { } if IsIDLocal(db, id){ - DeleteObjectRequest(db, id) + go DeleteObjectRequest(db, id) } if(manage == "t"){ |