diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-05 21:17:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-05 21:17:47 +0900 |
| commit | 46e8fd44c17156c17ea25188ba97d0e2052fa2d1 (patch) | |
| tree | aa17a5652d0bf0d4d54a38d76a236e1f01b87b83 /src/remote | |
| parent | Merge pull request #1400 from akihikodaki/duplicate (diff) | |
| parent | Add a missing await expression (diff) | |
| download | sharkey-46e8fd44c17156c17ea25188ba97d0e2052fa2d1.tar.gz sharkey-46e8fd44c17156c17ea25188ba97d0e2052fa2d1.tar.bz2 sharkey-46e8fd44c17156c17ea25188ba97d0e2052fa2d1.zip | |
Merge pull request #1403 from akihikodaki/duplicate
Add a missing await expression
Diffstat (limited to 'src/remote')
| -rw-r--r-- | src/remote/activitypub/resolve-person.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/resolve-person.ts b/src/remote/activitypub/resolve-person.ts index 7ed01e3222..a7c0020dd8 100644 --- a/src/remote/activitypub/resolve-person.ts +++ b/src/remote/activitypub/resolve-person.ts @@ -10,7 +10,7 @@ async function isCollection(collection) { } export default async (parentResolver, value, verifier?: string) => { - const { resolver, object } = parentResolver.resolveOne(value); + const { resolver, object } = await parentResolver.resolveOne(value); if ( object === null || |