diff options
| author | horus | 2018-05-14 20:12:02 +0200 |
|---|---|---|
| committer | horus | 2018-05-14 20:12:02 +0200 |
| commit | ad0d5d2211fe1db2d58a2a2ae084403f73f9dfdb (patch) | |
| tree | 16bc3fc261ff6a393b63ee518453b51952bf7a3f | |
| parent | d7056ac8134b3e283b6336182a2d415e12d265de (diff) | |
| download | alkobote-ad0d5d2211fe1db2d58a2a2ae084403f73f9dfdb.tar.gz | |
Bugfix. (crawler)
| -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 + ")" } |
