Sfoglia il codice sorgente

.get returns null when the property is not present

Manav Rathi 1 anno fa
parent
commit
59ed89cba1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      web/apps/auth/src/services/code.ts

+ 1 - 1
web/apps/auth/src/services/code.ts

@@ -79,7 +79,7 @@ const parseAccount = (url: URL): string | undefined => {
 const parseIssuer = (url: URL): string => {
     // If there is a "issuer" search param, use that.
     let issuer = url.searchParams.get("issuer");
-    if (issuer !== undefined) {
+    if (issuer) {
         // This is to handle bug in old versions of Ente Auth app.
         if (issuer.endsWith("period")) {
             issuer = issuer.substring(0, issuer.length - 6);