Importer: handle multiple statuses from Fedibird

This commit is contained in:
Alex Gleason 2022-01-24 13:27:13 -06:00
parent 5c755c8f9b
commit 9abeb2a324
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 5 additions and 0 deletions

View File

@ -129,6 +129,11 @@ export function importFetchedStatuses(statuses) {
processStatus(status.reblog);
}
// Fedibird quotes
if (status.quote && status.quote.id) {
processStatus(status.quote);
}
if (status.pleroma && status.pleroma.quote && status.pleroma.quote.id) {
processStatus(status.pleroma.quote);
}