Skip to content

Commit

Permalink
Merge branch 'private/brobledodiaz/appsource-gallery-fixes' of https:…
Browse files Browse the repository at this point in the history
…//github.com/microsoft/BCApps into private/brobledodiaz/appsource-gallery-fixes
  • Loading branch information
blrobl committed Feb 16, 2024
2 parents fbc920d + 163305d commit 7d191a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
ResponseObject := AppSourceProductManagerDependencies.GetAsJSon(RestClient, NextPageLink).AsObject();
if (ResponseObject.Get('items', ProductArrayToken)) then begin
ProductArray := ProductArrayToken.AsArray();
for i := 0 to ProductArray.Count() do
for i := 0 to (ProductArray.Count() - 1) do
if (ProductArray.Get(i, ProductToken)) then
InsertProductFromObject(ProductToken.AsObject(), AppSourceProductRec);
end;
Expand Down

0 comments on commit 7d191a7

Please sign in to comment.