check every photo, if it exists

This commit is contained in:
tibbi 2016-12-25 17:15:35 +01:00
parent 674c82c15d
commit 7cf5e658d8
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ class GetDirectoriesAsynctask(val context: Context, val isPickVideo: Boolean, va
val file = File(fullPath) val file = File(fullPath)
val size = cursor.getLongValue(MediaStore.Images.Media.SIZE) val size = cursor.getLongValue(MediaStore.Images.Media.SIZE)
if (size == 0L && !file.exists()) { if (size == 0L || !file.exists()) {
invalidFiles.add(file) invalidFiles.add(file)
continue continue
} }

View file

@ -55,7 +55,7 @@ class GetMediaAsynctask(val context: Context, val mPath: String, val isPickVideo
val file = File(curPath) val file = File(curPath)
val size = cursor.getLongValue(MediaStore.Images.Media.SIZE) val size = cursor.getLongValue(MediaStore.Images.Media.SIZE)
if (size == 0L && !file.exists()) { if (size == 0L || !file.exists()) {
invalidFiles.add(file) invalidFiles.add(file)
continue continue
} }