mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-27 15:16:43 -06:00
skip Delete(Note) activities when the note is already deleted
This commit is contained in:
parent
f17251aa3e
commit
803398e2c8
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ export class ApInboxService {
|
||||||
const note = await this.apDbResolverService.getNoteFromApId(uri);
|
const note = await this.apDbResolverService.getNoteFromApId(uri);
|
||||||
|
|
||||||
if (note == null) {
|
if (note == null) {
|
||||||
return 'message not found';
|
return 'skip: ignoring deleted note on both ends';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (note.userId !== actor.id) {
|
if (note.userId !== actor.id) {
|
||||||
|
|
Loading…
Reference in a new issue