mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 02:15:35 +03:00
Gallery picker can pick external images
This commit is contained in:
parent
93b7e1094c
commit
b8734a23a9
2 changed files with 2 additions and 1 deletions
1
changelog.d/6450.bugfix
Normal file
1
changelog.d/6450.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Gallery picker can pick external images
|
|
@ -49,7 +49,7 @@ class MediaPicker : Picker<MultiPickerBaseMediaType>() {
|
|||
return Intent(Intent.ACTION_GET_CONTENT).apply {
|
||||
addCategory(Intent.CATEGORY_OPENABLE)
|
||||
putExtra(Intent.EXTRA_ALLOW_MULTIPLE, !single)
|
||||
type = "video/*, image/*"
|
||||
type = "*/*"
|
||||
val mimeTypes = arrayOf("image/*", "video/*")
|
||||
putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue