Fix sharing extension only using first attachment
This commit is contained in:
parent
de1a97d357
commit
a12afb8dc2
|
@ -84,12 +84,23 @@ class ShareViewController: UIViewController {
|
||||||
}
|
}
|
||||||
} else if let text: NSString = await getObject(from: itemProvider) {
|
} else if let text: NSString = await getObject(from: itemProvider) {
|
||||||
return ("\n\n\(text)", [])
|
return ("\n\n\(text)", [])
|
||||||
} else if let attachment: DraftAttachment = await getObject(from: itemProvider) {
|
|
||||||
return ("", [attachment])
|
|
||||||
} else if let attributedContent = inputItem.attributedContentText {
|
} else if let attributedContent = inputItem.attributedContentText {
|
||||||
return ("\n\n\(attributedContent.string)", [])
|
return ("\n\n\(attributedContent.string)", [])
|
||||||
} else {
|
} else {
|
||||||
return ("", [])
|
let attachments = await withTaskGroup(of: DraftAttachment?.self, returning: [DraftAttachment].self) { group in
|
||||||
|
for provider in inputItem.attachments! {
|
||||||
|
group.addTask { @MainActor in
|
||||||
|
await self.getObject(from: provider)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return await group.reduce(into: [], { partialResult, result in
|
||||||
|
if let result {
|
||||||
|
partialResult.append(result)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return ("", attachments)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue