diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 18:41:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 18:41:02 +0900 |
| commit | cb5fe0d48f5a434bf699394cb79d623ec1259ef8 (patch) | |
| tree | df15572b8147873066b4dfb10de481e5580f73b0 /src/processor/http/perform-activitypub.ts | |
| parent | Fix bug (diff) | |
| parent | Merge pull request #1371 from akihikodaki/misc (diff) | |
| download | misskey-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.ts | 2 |
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); |