goferito / node-bing-api

Node.js module for the Bing Search API (Cognitive Services)
MIT License
56 stars 28 forks source link

Bug fix #29

Closed xauxatz closed 7 years ago

xauxatz commented 7 years ago

In bing.js line 69 there is an error. You have:

+ (opts.offset ? "&offset=" + opts.skip : "")

But it should really be:

+ (opts.skip ? "&offset=" + opts.skip : "")
goferito commented 7 years ago

Yup. You are right. It's fixed with version 3.2.1