aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorFChannel <>2021-07-25 13:25:47 -0700
committerFChannel <>2021-07-25 13:25:47 -0700
commitdef81637bc3d9f7ff73fed2786dbaa7a78086799 (patch)
treed8a2ad427596a9a03bc83be2de03fe068f5dfecd /main.go
parent8f7386f2906716d40099fb50f029d48796dd1bbd (diff)
fixed auto follow logic as well as out of sync following
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index dc9370b..8547efd 100644
--- a/main.go
+++ b/main.go
@@ -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)
+ }
}
}
}