Skip to content

Commit f46f5ad

Browse files
authored
Merge pull request #229 from J-W-Chan/main
fixed error return
2 parents 0881bc6 + 421a581 commit f46f5ad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Source/FikaAmazonAPI/Services/ProductPricingService.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ public async Task<GetBatchOffersResponse> GetListingOffersBatchAsync(ParameterGe
120120
*/
121121

122122
await CreateAuthorizedRequestAsync(ProductPricingApiUrls.GetBatchListingOffers, RestSharp.Method.POST, postJsonObj: parameterGetItemOffersBatchRequest);
123-
var response = await ExecuteRequestAsync<GetBatchOffersResponse>(RateLimitType.ProductPricing_GetItemOffers);
124-
return null;
123+
return await ExecuteRequestAsync<GetBatchOffersResponse>(RateLimitType.ProductPricing_GetItemOffers);
125124
}
126125

127126
}

0 commit comments

Comments
 (0)