From ad0d5d2211fe1db2d58a2a2ae084403f73f9dfdb Mon Sep 17 00:00:00 2001 From: horus Date: Mon, 14 May 2018 20:12:02 +0200 Subject: Bugfix. (crawler) --- crawler/shops.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawler/shops.go') diff --git a/crawler/shops.go b/crawler/shops.go index a08a873..d9fcc0d 100644 --- a/crawler/shops.go +++ b/crawler/shops.go @@ -100,7 +100,7 @@ func (app *App) getShops() ([]Shop, error) { var shop_query string if len(app.Config.ShopIDs) > 0 { - shopIDs := strings.Join(app.Config.ShopIDs, `", "`) + shopIDs := strings.Join(app.Config.ShopIDs, `, `) if shopIDs != "" { shop_query = " WHERE id IN (" + shopIDs + ")" } -- cgit v1.2.3