Skip to content

Commit 6854e68

Browse files
committed
Increase version 0.7.1
1 parent 035bd80 commit 6854e68

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

dist/addsearch-js-client.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "addsearch-js-client",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "AddSearch API JavaScript client",
55
"main": "index.js",
66
"jsdelivr": "./dist/addsearch-js-client.min.js",

src/apifetch.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ var executeApiFetch = function(apiHostname, sitekey, type, settings, cb, fuzzyRe
159159
// Execute API call
160160
api = type === 'recommend' ?
161161
'https://' + apiHostname + '/v1/' + apiPath + '/' + sitekey + '?configurationKey=' + recommendOptions.configurationKey + qs :
162-
'https://' + apiHostname + '/v1/' + apiPath + '/' + sitekey + '?term=' + kw + qs
162+
'https://' + apiHostname + '/v1/' + apiPath + '/' + sitekey + '?term=' + kw + qs;
163+
163164
axios.get(api)
164165
.then(function(response) {
165166
var json = response.data;

0 commit comments

Comments
 (0)