mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-24 14:06:44 -06:00
Merge pull request #1379 from akihikodaki/misc
This commit is contained in:
commit
97a4ec4ff3
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 (subject !== verifier) {
|
||||
throw new Error;
|
||||
throw new Error();
|
||||
}
|
||||
|
||||
return finger;
|
||||
|
@ -34,5 +34,5 @@ export default async function resolve(query, verifier?: string): Promise<IWebFin
|
|||
return resolve(subject, subject);
|
||||
}
|
||||
|
||||
throw new Error;
|
||||
throw new Error();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue