forked from FoundKeyGang/FoundKey
Invoke a constructor with parentheses
This commit is contained in:
parent
6503beecc5
commit
b5487826a6
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ export default async function resolve(query, verifier?: string): Promise<IWebFin
|
||||||
|
|
||||||
if (typeof verifier === 'string') {
|
if (typeof verifier === 'string') {
|
||||||
if (subject !== verifier) {
|
if (subject !== verifier) {
|
||||||
throw new Error;
|
throw new Error();
|
||||||
}
|
}
|
||||||
|
|
||||||
return finger;
|
return finger;
|
||||||
|
@ -34,5 +34,5 @@ export default async function resolve(query, verifier?: string): Promise<IWebFin
|
||||||
return resolve(subject, subject);
|
return resolve(subject, subject);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Error;
|
throw new Error();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue