diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 18:36:47 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 18:36:47 +0900 |
| commit | 69763ac32b4e79e84d8338ba8e20b83add9d8560 (patch) | |
| tree | a3ac499dac06decbc8c47a3d393336f5fbedc56a /src/processor/http/perform-activitypub.ts | |
| parent | Distribute posts from remote (diff) | |
| download | sharkey-69763ac32b4e79e84d8338ba8e20b83add9d8560.tar.gz sharkey-69763ac32b4e79e84d8338ba8e20b83add9d8560.tar.bz2 sharkey-69763ac32b4e79e84d8338ba8e20b83add9d8560.zip | |
Resolve account by signature in inbox
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); |