summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-05 21:16:14 +0900
committerAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-05 21:16:19 +0900
commit068c0b4cceaa9461cc87a6d44abebdfc429d1861 (patch)
treea5b507648347881c042576b617428ef10cf20bb9 /src
parentHandle inReplyTo property (diff)
downloadsharkey-068c0b4cceaa9461cc87a6d44abebdfc429d1861.tar.gz
sharkey-068c0b4cceaa9461cc87a6d44abebdfc429d1861.tar.bz2
sharkey-068c0b4cceaa9461cc87a6d44abebdfc429d1861.zip
Add a missing await expression
Diffstat (limited to 'src')
-rw-r--r--src/remote/activitypub/resolve-person.ts2
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 ||