.get returns null when the property is not present
This commit is contained in:
parent
623b71715d
commit
59ed89cba1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue