You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When you set Pod::PICKER_MEDIA = false and Pod::PICKER_AUDIO = false in Podfile and you want to pick just documents, then the plugin is partially broken on iOS. If you trigger the popup via pickFiles() and press "Cancel" to cancel it, everything works fine. But when you drag the topbar downwards instead of pressing "Cancel" button, then the Future does not complete. The cause of the issue is that presentationControllerDidDismiss method (which is called when the topbar is dragged downwards) in FilePickerPlugin.m is wrapped in #ifdef PICKER_MEDIA so it is not present when the PICKER_MEDIA is disabled.
Platform
Android
iOS
Web
Desktop
Platform OS version
15.5
The text was updated successfully, but these errors were encountered:
Describe the bug
When you set
Pod::PICKER_MEDIA = false
andPod::PICKER_AUDIO = false
inPodfile
and you want to pick just documents, then the plugin is partially broken on iOS. If you trigger the popup viapickFiles()
and press "Cancel" to cancel it, everything works fine. But when you drag the topbar downwards instead of pressing "Cancel" button, then the Future does not complete. The cause of the issue is thatpresentationControllerDidDismiss
method (which is called when the topbar is dragged downwards) inFilePickerPlugin.m
is wrapped in#ifdef PICKER_MEDIA
so it is not present when the PICKER_MEDIA is disabled.Platform
Platform OS version
15.5
The text was updated successfully, but these errors were encountered: