fix filtering of quote uri

apparently filtering with `x => x !== null` will let `undefined`
through…
This commit is contained in:
dakkar 2024-08-30 16:12:02 +01:00
parent 26e0412fbb
commit 3a3098f932

View file

@ -483,7 +483,7 @@ export class ApNoteService {
}
};
const uris = unique([note._misskey_quote, note.quoteUrl, note.quoteUri].filter(x => x !== null));
const uris = unique([note._misskey_quote, note.quoteUrl, note.quoteUri].filter(x => x != null));
const results = await Promise.all(uris.map(tryResolveNote));
quote = results.filter((x): x is { status: 'ok', res: MiNote } => x.status === 'ok').map(x => x.res).at(0);