Skip to content

Commit

Permalink
v1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri committed Nov 23, 2021
1 parent a03f48f commit 036d7ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/FikaAmazonAPI/FikaAmazonAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<Product>CSharp Amazon Sp API</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>8.0</LangVersion>
<Version>1.0.14</Version>
<AssemblyVersion>1.0.1.14</AssemblyVersion>
<FileVersion>1.0.1.14</FileVersion>
<Version>1.0.15</Version>
<AssemblyVersion>1.0.1.15</AssemblyVersion>
<FileVersion>1.0.1.15</FileVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/abuzuhri/Amazon-SP-API-CSharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion Source/FikaAmazonAPI/Services/FbaInventoryService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public List<InventorySummaries> GetInventorySummaries(ParameterGetInventorySumma

CreateAuthorizedRequest(FbaInventoriesApiUrls.GetInventorySummaries, RestSharp.Method.GET, param);
var response = ExecuteRequest<GetInventorySummariesResponse>();
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))
{
Expand Down

0 comments on commit 036d7ed

Please sign in to comment.