mirror of
https://github.com/miniflux/v2.git
synced 2025-09-15 18:57:04 +00:00
refactor(js): add jshint check for strict comparison
This commit is contained in:
parent
605eeb4525
commit
91f9a7650e
5 changed files with 12 additions and 11 deletions
|
@ -149,7 +149,7 @@ class WebAuthnHandler {
|
|||
}
|
||||
catch (err) {
|
||||
// Swallow aborted conditional logins
|
||||
if (err instanceof DOMException && err.name == "AbortError") {
|
||||
if (err instanceof DOMException && err.name === "AbortError") {
|
||||
return;
|
||||
}
|
||||
WebAuthnHandler.showErrorMessage(err);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue