Fix following from Preroma does not complete (#2905)
* In Follow Accept/Reject, send previous received id * In Follow Accept/Reject, send Activity.actor
This commit is contained in:
		@@ -6,11 +6,12 @@ import renderFollow from '../../../remote/activitypub/renderer/follow';
 | 
			
		||||
import { deliver } from '../../../queue';
 | 
			
		||||
import FollowRequest from '../../../models/follow-request';
 | 
			
		||||
 | 
			
		||||
export default async function(follower: IUser, followee: IUser) {
 | 
			
		||||
export default async function(follower: IUser, followee: IUser, requestId?: string) {
 | 
			
		||||
	await FollowRequest.insert({
 | 
			
		||||
		createdAt: new Date(),
 | 
			
		||||
		followerId: follower._id,
 | 
			
		||||
		followeeId: followee._id,
 | 
			
		||||
		requestId,
 | 
			
		||||
 | 
			
		||||
		// 非正規化
 | 
			
		||||
		_follower: {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user