fetch last modified more often, it is needed at cache

This commit is contained in:
tibbi 2021-01-14 11:23:42 +01:00
parent e86e6986c0
commit 4339a42eb3

View file

@ -319,14 +319,16 @@ class MediaFetcher(val context: Context) {
media.add(this) media.add(this)
} }
} else { } else {
var lastModified = 0L var lastModified: Long
if (getProperLastModified) {
var newLastModified = lastModifieds.remove(path) var newLastModified = lastModifieds.remove(path)
if (newLastModified == null) { if (newLastModified == null) {
newLastModified = file.lastModified() newLastModified = if (getProperLastModified) {
file.lastModified()
} else {
0L
}
} }
lastModified = newLastModified lastModified = newLastModified
}
var dateTaken = lastModified var dateTaken = lastModified
val videoDuration = if (getVideoDurations && isVideo) context.getDuration(path) ?: 0 else 0 val videoDuration = if (getVideoDurations && isVideo) context.getDuration(path) ?: 0 else 0