Skip to content

Commit

Permalink
[Open in VS Code] Fix dependencies not found (#2348)
Browse files Browse the repository at this point in the history
<!-- Thank you for submitting a Pull Request. If you're new to
contributing to BCApps please read our pull request guideline below
* https://github.com/microsoft/BCApps/Contributing.md
-->
#### Summary <!-- Provide a general summary of your changes -->
Find() wouldn't iterate through the rows, FindFirst does.

#### Work Item(s) <!-- Add the issue number here after the #. The issue
needs to be open and approved. Submitting PRs with no linked issues or
unapproved issues is highly discouraged. -->
Fixes
[AB#548696](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/548696)
  • Loading branch information
blrobl authored Nov 15, 2024
1 parent 582548b commit 5ff8639
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ codeunit 8333 "VS Code Integration Impl."
var
DependencyList: TextBuilder;
begin
if NavAppInstalledApp.Find() then
if NavAppInstalledApp.FindSet() then
repeat
DependencyList.Append(FormatDependency(NavAppInstalledApp));
until NavAppInstalledApp.Next() = 0;
Expand Down

0 comments on commit 5ff8639

Please sign in to comment.