Skip to content

Commit 421a581

Browse files
author
dev_chenjiawen
committed
fixed error return
1 parent 0881bc6 commit 421a581

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)