Skip to content
This repository was archived by the owner on Sep 17, 2021. It is now read-only.

Commit 6a3f732

Browse files
committed
Updating for lint issues
1 parent 88b28c0 commit 6a3f732

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
@@ -116,7 +116,7 @@ async function attach(context: vscode.ExtensionContext, viaConfig: boolean, targ
116116
});
117117

118118
let targetWebsocketUrl = '';
119-
if (typeof targetUrl === 'string' && targetUrl.length > 0 && targetUrl != defaultUrl) {
119+
if (typeof targetUrl === 'string' && targetUrl.length > 0 && targetUrl !== defaultUrl) {
120120
const matches = items.filter(i => targetUrl.localeCompare(i.description, 'en', { sensitivity: 'base' }) == 0);
121121
if (matches && matches.length > 0 ) {
122122
targetWebsocketUrl = matches[0].detail;

0 commit comments

Comments
 (0)