From 9abeb2a324e12dbecfdbba5e8305fff3f291835e Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 24 Jan 2022 13:27:13 -0600 Subject: [PATCH] Importer: handle multiple statuses from Fedibird --- app/soapbox/actions/importer/index.js | 5 +++++ 1 file changed, 5 insertions(+) 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); }