diff options
| -rw-r--r-- | crawler/shops.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 + ")" } |
