1
0
Fork 0
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:
Julien Voisin 2025-01-17 01:50:09 +00:00 committed by GitHub
parent 605eeb4525
commit 91f9a7650e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 11 deletions

View file

@ -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);