summaryrefslogtreecommitdiff
path: root/src/processor/http/perform-activitypub.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-02 18:41:02 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-02 18:41:02 +0900
commitcb5fe0d48f5a434bf699394cb79d623ec1259ef8 (patch)
treedf15572b8147873066b4dfb10de481e5580f73b0 /src/processor/http/perform-activitypub.ts
parentFix bug (diff)
parentMerge pull request #1371 from akihikodaki/misc (diff)
downloadmisskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.tar.gz
misskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.tar.bz2
misskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.zip
Merge branch 'master' of https://github.com/syuilo/misskey
Diffstat (limited to 'src/processor/http/perform-activitypub.ts')
-rw-r--r--src/processor/http/perform-activitypub.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/http/perform-activitypub.ts b/src/processor/http/perform-activitypub.ts
index d8981ea126..420ed9ec75 100644
--- a/src/processor/http/perform-activitypub.ts
+++ b/src/processor/http/perform-activitypub.ts
@@ -2,5 +2,5 @@ import User from '../../models/user';
import act from '../../remote/activitypub/act';
export default ({ data }, done) => User.findOne({ _id: data.actor })
- .then(actor => act(actor, data.outbox, data.distribute))
+ .then(actor => act(actor, data.outbox, false))
.then(() => done(), done);