Skip to content
Snippets Groups Projects
Commit a0c6e7af authored by syuilo's avatar syuilo
Browse files

Fix bug

parent de620c82
No related branches found
No related tags found
No related merge requests found
......@@ -18,13 +18,13 @@ export default async (actor, activity): Promise<void> => {
switch (object.type) {
case 'Note':
deleteNote(uri);
deleteNote(actor, uri);
break;
case 'Tombstone':
const post = await Post.findOne({ uri });
if (post != null) {
deleteNote(uri);
deleteNote(actor, uri);
}
break;
......
......@@ -5,10 +5,20 @@ import { createDb } from '../../../../queue';
const log = debug('misskey:activitypub');
export default async function(uri: string) {
export default async function(actor, uri: string) {
log(`Deleting the Note: ${uri}`);
const post = await Post.findOneAndDelete({ uri });
const post = await Post.findOne({ uri });
if (post == null) {
throw new Error('post not found');
}
if (post.userId !== actor._id) {
throw new Error('投稿を削除しようとしているユーザーは投稿の作成者ではありません');
}
Post.remove({ _id: post._id });
createDb({
type: 'deletePostDependents',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment