Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix UIImagePicker code path
  • Loading branch information
stuartmorgan-g committed Aug 11, 2025
commit 9ebcff3bed6819e11c2d5e075512f371c311ecb2
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ - (void)launchUIImagePickerWithSource:(nonnull FLTSourceSpecification *)source
imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
imagePickerController.delegate = self;
NSMutableArray<NSString *> *mediaTypes = [[NSMutableArray alloc] init];
if (context) {
if (context.includeImages) {
[mediaTypes addObject:(NSString *)kUTTypeImage];
}
if (context.includeVideo) {
Expand Down