Skip to content

Commit

Permalink
Fixed runAction command not working on objects
Browse files Browse the repository at this point in the history
Signed-off-by: Seb Julliand <[email protected]>
  • Loading branch information
sebjulliand authored and chrjorgensen committed Nov 1, 2023
1 parent 3ef2d44 commit f173aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instantiate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export async function loadAllofExtension(context: vscode.ExtensionContext) {
}
}

if (canRun && [`member`, `streamfile`, `file`].includes(uri.scheme)) {
if (canRun && [`member`, `streamfile`, `file`, `object`].includes(uri.scheme)) {
return await CompileTools.runAction(instance, uri, action, method);
}
}
Expand Down

0 comments on commit f173aec

Please sign in to comment.