summaryrefslogtreecommitdiff
path: root/crawler/shop_rumundco.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/shop_rumundco.go')
-rw-r--r--crawler/shop_rumundco.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawler/shop_rumundco.go b/crawler/shop_rumundco.go
index 1ce202f..45069c2 100644
--- a/crawler/shop_rumundco.go
+++ b/crawler/shop_rumundco.go
@@ -14,10 +14,7 @@ func (app *App) ScrapeRumundCo(shop Shop) []Angebot {
Whiskys := []Angebot{}
- c := colly.NewCollector(
- colly.AllowedDomains("rumundco.de"),
- colly.AllowedDomains("www.rumundco.de"),
- )
+ c := app.customCollector([]string{"rumundco.de", "www.rumundco.de"})
c.OnHTML(".product-teaser", func(e *colly.HTMLElement) {
@@ -158,7 +155,10 @@ func (app *App) ScrapeRumundCo(shop Shop) []Angebot {
e.Request.Ctx.Put("website", string(e.Response.Body))
})
- c.Visit(Shop_url)
+ err := c.Visit(Shop_url)
+ if err != nil {
+ Warn(nil, shop.Name+": "+err.Error())
+ }
return Whiskys
}