diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2018-10-15 16:51:23 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-10-15 16:51:22 +0900 |
| commit | 49dbd7f9d2bcf7c18114bb369d4730855a9f8391 (patch) | |
| tree | d38f8ed14f0aff42c1b682453620c6f63e803266 /src/models | |
| parent | 10.18.0 (diff) | |
| download | misskey-49dbd7f9d2bcf7c18114bb369d4730855a9f8391.tar.gz misskey-49dbd7f9d2bcf7c18114bb369d4730855a9f8391.tar.bz2 misskey-49dbd7f9d2bcf7c18114bb369d4730855a9f8391.zip | |
Fix following from Preroma does not complete (#2905)
* In Follow Accept/Reject, send previous received id
* In Follow Accept/Reject, send Activity.actor
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/follow-request.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/follow-request.ts b/src/models/follow-request.ts index 8ed131c80e..b84fc5f5f5 100644 --- a/src/models/follow-request.ts +++ b/src/models/follow-request.ts @@ -12,6 +12,7 @@ export type IFollowRequest = { createdAt: Date; followeeId: mongo.ObjectID; followerId: mongo.ObjectID; + requestId?: string; // id of Follow Activity // 非正規化 _followee: { |