Skip to content

Commit 162ae71

Browse files
committed
accept empty response for arguments list in debug this method
1 parent f3242dd commit 162ae71

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)