Skip to content

Commit 29dd574

Browse files
authored
Merge pull request #644 from intersystems-community/fix-642
accept empty response for arguments list in debug this method
2 parents f3242dd + 162ae71 commit 29dd574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
751751
placeHolder: "Please enter comma delimited arguments list",
752752
})
753753
.then((args) => {
754-
if (args) {
754+
if (args != undefined && args != null) {
755755
startDebugging(args);
756756
}
757757
});

0 commit comments

Comments
 (0)