upd: change unrenote function

This commit is contained in:
Mar0xy 2023-10-13 22:29:14 +02:00
parent b4c81eb4ef
commit 96d99f04fb
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
2 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
});
for (const note of renotes) {
this.noteDeleteService.delete(await this.usersRepository.findOneByOrFail({ id: me.id }), note, false, me);
this.noteDeleteService.delete(await this.usersRepository.findOneByOrFail({ id: me.id }), note, false);
}
});
}