From 4fab6a16a26ed579cd74a4052479379565fd559b Mon Sep 17 00:00:00 2001 From: Andrew Skinner Date: Thu, 25 Oct 2018 14:55:42 -0500 Subject: [PATCH] change boolean values --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 1b33e97..f4122b5 100644 --- a/index.js +++ b/index.js @@ -305,7 +305,7 @@ exports = module.exports = function(options) { var skuList = (options && options.skuList) ? options.skuList : null, itemCondition = (options && options.itemCondition) ? options.itemCondition : 'Any', - excludeMe = (options && options.excludeMe === true) ? 'True' : 'False'; + excludeMe = (options && options.excludeMe === true) ? 'true' : 'false'; // Request var reqForm = {query: {"Action": "GetLowestOfferListingsForSKU", "MarketplaceId": mpList[mpCur].id, "ItemCondition": itemCondition, "ExcludeMe": excludeMe}}; @@ -320,7 +320,7 @@ exports = module.exports = function(options) { var asinList = (options && options.asinList) ? options.asinList : null, itemCondition = (options && options.itemCondition) ? options.itemCondition : 'Any', - excludeMe = (options && options.excludeMe === true) ? 'True' : 'False'; + excludeMe = (options && options.excludeMe === true) ? 'true' : 'false'; // Request var reqForm = {query: {"Action": "GetLowestOfferListingsForASIN", "MarketplaceId": mpList[mpCur].id, "ItemCondition": itemCondition, "ExcludeMe": excludeMe}};