aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
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)
+ }
}
}
}