diff options
author | FChannel <> | 2021-07-25 13:25:47 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-25 13:25:47 -0700 |
commit | def81637bc3d9f7ff73fed2786dbaa7a78086799 (patch) | |
tree | d8a2ad427596a9a03bc83be2de03fe068f5dfecd /main.go | |
parent | 8f7386f2906716d40099fb50f029d48796dd1bbd (diff) |
fixed auto follow logic as well as out of sync following
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2175,7 +2175,9 @@ func MakeActivityRequest(db *sql.DB, activity Activity) { _, err = RouteProxy(req) - CheckError(err, "error with sending activity resp to") + if err != nil { + fmt.Println("error with sending activity resp to actor " + instance) + } } } } |