diff --git a/Source/FikaAmazonAPI/FikaAmazonAPI.csproj b/Source/FikaAmazonAPI/FikaAmazonAPI.csproj index 0ff09b04..b59effee 100644 --- a/Source/FikaAmazonAPI/FikaAmazonAPI.csproj +++ b/Source/FikaAmazonAPI/FikaAmazonAPI.csproj @@ -8,9 +8,9 @@ CSharp Amazon Sp API true 8.0 - 1.0.14 - 1.0.1.14 - 1.0.1.14 + 1.0.15 + 1.0.1.15 + 1.0.1.15 true https://github.com/abuzuhri/Amazon-SP-API-CSharp MIT diff --git a/Source/FikaAmazonAPI/Services/FbaInventoryService.cs b/Source/FikaAmazonAPI/Services/FbaInventoryService.cs index 1d514a6c..3af27dfa 100644 --- a/Source/FikaAmazonAPI/Services/FbaInventoryService.cs +++ b/Source/FikaAmazonAPI/Services/FbaInventoryService.cs @@ -22,7 +22,7 @@ public List GetInventorySummaries(ParameterGetInventorySumma CreateAuthorizedRequest(FbaInventoriesApiUrls.GetInventorySummaries, RestSharp.Method.GET, param); var response = ExecuteRequest(); - var nextToken = response.Pagination?.NextToken;// Pagination is Null at last page + var nextToken = response.Pagination?.NextToken; list.Add(response.Payload.InventorySummaries); while (!string.IsNullOrEmpty(nextToken)) {