diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-02 17:41:51 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-02 17:41:51 +0900 |
| commit | 81af33f8a139191a551c00d14a1f9ba96ec53c10 (patch) | |
| tree | d529158aa9638032091fa9d0ca17e281cc268895 /src/processor | |
| parent | Present icons (diff) | |
| parent | Distribute posts from remote (diff) | |
| download | misskey-81af33f8a139191a551c00d14a1f9ba96ec53c10.tar.gz misskey-81af33f8a139191a551c00d14a1f9ba96ec53c10.tar.bz2 misskey-81af33f8a139191a551c00d14a1f9ba96ec53c10.zip | |
Merge pull request #1368 from akihikodaki/misc
Distribute posts from remote
Diffstat (limited to 'src/processor')
| -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 51e1ede145..d8981ea126 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)) + .then(actor => act(actor, data.outbox, data.distribute)) .then(() => done(), done); |