mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-06-05 21:59:19 +02:00
fetch last modified more often, it is needed at cache
This commit is contained in:
@@ -319,14 +319,16 @@ class MediaFetcher(val context: Context) {
|
||||
media.add(this)
|
||||
}
|
||||
} else {
|
||||
var lastModified = 0L
|
||||
if (getProperLastModified) {
|
||||
var lastModified: Long
|
||||
var newLastModified = lastModifieds.remove(path)
|
||||
if (newLastModified == null) {
|
||||
newLastModified = file.lastModified()
|
||||
newLastModified = if (getProperLastModified) {
|
||||
file.lastModified()
|
||||
} else {
|
||||
0L
|
||||
}
|
||||
}
|
||||
lastModified = newLastModified
|
||||
}
|
||||
|
||||
var dateTaken = lastModified
|
||||
val videoDuration = if (getVideoDurations && isVideo) context.getDuration(path) ?: 0 else 0
|
||||
|
Reference in New Issue
Block a user