Skip to content

Commit

Permalink
Check for unix:// instead of unix:
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Nov 29, 2024
1 parent f64a4c4 commit bf2f153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/internal/debugger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ async function connectToUnixServer(
let connectionOptions;
if (unix.startsWith("unix:")) {
unix = unescapeUnixSocketUrl(unix);
if (unix.startsWith("unix:")) {
unix = unix.substring("unix:".length);
if (unix.startsWith("unix://")) {
unix = unix.substring("unix://".length);
}
connectionOptions = { unix };
} else if (unix.startsWith("tcp:")) {
Expand Down

0 comments on commit bf2f153

Please sign in to comment.