mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-01 11:08:02 +01:00
fix third party intent handling when folder is hidden with a dot
This commit is contained in:
parent
666f293271
commit
0b2f0da4be
@ -142,7 +142,8 @@ open class PhotoVideoActivity : SimpleActivity(), ViewPagerFragment.FragmentList
|
|||||||
if (intent.extras?.containsKey(REAL_FILE_PATH) == true) {
|
if (intent.extras?.containsKey(REAL_FILE_PATH) == true) {
|
||||||
val realPath = intent.extras!!.getString(REAL_FILE_PATH)
|
val realPath = intent.extras!!.getString(REAL_FILE_PATH)
|
||||||
if (realPath != null && getDoesFilePathExist(realPath)) {
|
if (realPath != null && getDoesFilePathExist(realPath)) {
|
||||||
val avoidShowingHiddenFiles = isRPlus() && (File(realPath).isHidden || File(realPath.getParentPath(), NOMEDIA).exists())
|
val avoidShowingHiddenFiles =
|
||||||
|
isRPlus() && (File(realPath).isHidden || File(realPath.getParentPath(), NOMEDIA).exists() || realPath.contains("/."))
|
||||||
if (!avoidShowingHiddenFiles) {
|
if (!avoidShowingHiddenFiles) {
|
||||||
if (realPath.getFilenameFromPath().contains('.') || filename.contains('.')) {
|
if (realPath.getFilenameFromPath().contains('.') || filename.contains('.')) {
|
||||||
if (isFileTypeVisible(realPath)) {
|
if (isFileTypeVisible(realPath)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user