Skip to content

Commit

Permalink
Fix for in/of introduced in bbf6e56
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelRobitaille committed Mar 12, 2024
1 parent 4313035 commit e144f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/CommandHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export class CommandHandler {
if (obj?.command === "shellCommand.execute") {
yield obj as Input;
}
for (const value in Object.values(obj)) {
for (const value of Object.values(obj)) {
if (typeof value === 'object') {
yield* deepSearch(value);
}
Expand Down

0 comments on commit e144f3e

Please sign in to comment.