diff --git a/app/soapbox/actions/importer/index.js b/app/soapbox/actions/importer/index.js index 1b15956f2..4c8a98247 100644 --- a/app/soapbox/actions/importer/index.js +++ b/app/soapbox/actions/importer/index.js @@ -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); }