summaryrefslogtreecommitdiff
path: root/src/processor
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-02 01:26:17 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-02 01:26:17 +0900
commitad57e36d0d3b21c3c55ce36c870c189311fc7032 (patch)
tree1b86f4bfa3bf30efc5b817beac9d1db147a006a0 /src/processor
parentMerge pull request #1358 from akihikodaki/inbox (diff)
downloadsharkey-ad57e36d0d3b21c3c55ce36c870c189311fc7032.tar.gz
sharkey-ad57e36d0d3b21c3c55ce36c870c189311fc7032.tar.bz2
sharkey-ad57e36d0d3b21c3c55ce36c870c189311fc7032.zip
Fix: Add missing bracket
Diffstat (limited to 'src/processor')
-rw-r--r--src/processor/http/follow.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/http/follow.ts b/src/processor/http/follow.ts
index adaa2f3f65..a8f7ba78c8 100644
--- a/src/processor/http/follow.ts
+++ b/src/processor/http/follow.ts
@@ -49,7 +49,7 @@ export default ({ data }, done) => Following.findOne({ _id: data.following }).th
port,
pathname,
search
- } = new URL(followee.account as IRemoteAccount).inbox);
+ } = new URL((followee.account as IRemoteAccount).inbox);
const req = request({
protocol,