1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-15 12:39:39 -05:00

Revert "try: fix: return null instead of throw error when recursively fetching note"

This reverts commit be295b19a6.
This commit is contained in:
fly_mc 2024-11-18 10:35:47 +08:00
parent cb9385e229
commit d0e2f46412

View file

@ -235,7 +235,7 @@ export class ApNoteService {
})
.catch(async err => {
this.logger.warn(`Error in inReplyTo ${note.inReplyTo} - ${err.statusCode ?? err}`);
return null;
throw err;
})
: null;