Skip to content

Commit 43b54a0

Browse files
committed
chore: fixed linting issues
1 parent e03b7a6 commit 43b54a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/connectionManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class ConnectionManager extends EventEmitter<ConnectionManagerEvents> {
129129
return this.state;
130130
}
131131

132-
if (this.state.tag == "connected" || this.state.tag == "connecting") {
132+
if (this.state.tag === "connected" || this.state.tag === "connecting") {
133133
try {
134134
await this.state.serviceProvider?.close(true);
135135
} finally {
@@ -168,7 +168,7 @@ export class ConnectionManager extends EventEmitter<ConnectionManagerEvents> {
168168
case "GSSAPI":
169169
return "kerberos";
170170
case "PLAIN":
171-
if (searchParams.get("authSource") == "$external") {
171+
if (searchParams.get("authSource") === "$external") {
172172
return "ldap";
173173
}
174174
break;

0 commit comments

Comments
 (0)