mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Send actor in Delete
This commit is contained in:
parent
63a2ef73f8
commit
dbd13a2663
@ -1,4 +1,8 @@
|
||||
export default (object: any) => ({
|
||||
import config from '../../../config';
|
||||
import { ILocalUser } from "../../../models/user";
|
||||
|
||||
export default (object: any, user: ILocalUser) => ({
|
||||
type: 'Delete',
|
||||
actor: `${config.url}/users/${user._id}`,
|
||||
object
|
||||
});
|
||||
|
@ -32,7 +32,7 @@ export default async function(user: IUser, note: INote) {
|
||||
|
||||
//#region ローカルの投稿なら削除アクティビティを配送
|
||||
if (isLocalUser(user)) {
|
||||
const content = pack(renderDelete(await renderNote(note)));
|
||||
const content = pack(renderDelete(await renderNote(note), user));
|
||||
|
||||
const followings = await Following.find({
|
||||
followeeId: user._id,
|
||||
|
Loading…
Reference in New Issue
Block a user