aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/main.go b/main.go
index 140682b..bba9e0f 100644
--- a/main.go
+++ b/main.go
@@ -2811,7 +2811,6 @@ func AddInstanceToIndexDB(db *sql.DB, actor string) {
func GetCollectionFromReq(path string) Collection {
req, err := http.NewRequest("GET", path, nil)
-
CheckError(err, "error with getting collection from req")
req.Header.Set("Accept", activitystreams)
@@ -2826,11 +2825,7 @@ func GetCollectionFromReq(path string) Collection {
var respCollection Collection
- err = json.Unmarshal(body, &respCollection)
-
- if err != nil {
- panic(err)
- }
+ _ = json.Unmarshal(body, &respCollection)
return respCollection
}