From cde94d5ed4c8e12baa9ff7f2d43ae9a835906095 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 27 Oct 2020 17:35:42 -0500 Subject: [PATCH] Remove redundant serverAddress check We now guarantee there is an address. --- src/node/entry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/entry.ts b/src/node/entry.ts index 30dd93d8..3b95f9e9 100644 --- a/src/node/entry.ts +++ b/src/node/entry.ts @@ -159,7 +159,7 @@ const main = async (args: DefaultedArgs): Promise => { } } - if (serverAddress && !args.socket && args.open) { + if (!args.socket && args.open) { // The web socket doesn't seem to work if browsing with 0.0.0.0. const openAddress = serverAddress.replace(/:\/\/0.0.0.0/, "://localhost") await open(openAddress).catch((error: Error) => {