mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
add a check if the owner file from extended details exists
This commit is contained in:
parent
b1019af51b
commit
883e3ad6c1
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,9 @@ abstract class ViewPagerFragment : Fragment() {
|
||||||
|
|
||||||
fun getMediumExtendedDetails(medium: Medium): String {
|
fun getMediumExtendedDetails(medium: Medium): String {
|
||||||
val file = File(medium.path)
|
val file = File(medium.path)
|
||||||
|
if (!file.exists())
|
||||||
|
return ""
|
||||||
|
|
||||||
val path = "${file.parent.trimEnd('/')}/"
|
val path = "${file.parent.trimEnd('/')}/"
|
||||||
val exif = android.media.ExifInterface(medium.path)
|
val exif = android.media.ExifInterface(medium.path)
|
||||||
val details = StringBuilder()
|
val details = StringBuilder()
|
||||||
|
|
Loading…
Reference in a new issue