fix third party intent handling if selected folder contains .nomedia

This commit is contained in:
tibbi 2022-04-19 19:35:59 +02:00
parent 12ed80c51e
commit a9d5604843

View file

@ -142,7 +142,7 @@ open class PhotoVideoActivity : SimpleActivity(), ViewPagerFragment.FragmentList
if (intent.extras?.containsKey(REAL_FILE_PATH) == true) {
val realPath = intent.extras!!.getString(REAL_FILE_PATH)
if (realPath != null && getDoesFilePathExist(realPath)) {
val avoidShowingHiddenFiles = isRPlus() && File(realPath).isHidden
val avoidShowingHiddenFiles = isRPlus() && (File(realPath).isHidden || File(realPath.getParentPath(), NOMEDIA).exists())
if (!avoidShowingHiddenFiles) {
if (realPath.getFilenameFromPath().contains('.') || filename.contains('.')) {
if (isFileTypeVisible(realPath)) {