Skip to content

Commit

Permalink
fix #181939
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed May 9, 2023
1 parent ab0a574 commit 25871c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export class ShellIntegrationAddon extends Disposable implements IShellIntegrati
}
case VSCodeOscPt.CommandLine: {
let commandLine: string;
if (args.length >= 1 || args.length <= 2) {
if (args.length && args.length <= 2) {
commandLine = deserializeMessage(args[0]);
} else {
commandLine = '';
Expand Down

0 comments on commit 25871c4

Please sign in to comment.