mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-28 02:09:17 +01:00
store latestMediaId only when not from cache, should improve new media discovery
This commit is contained in:
parent
58e44786a9
commit
c930ed5cda
@ -527,9 +527,11 @@ class MainActivity : SimpleActivity(), DirectoryAdapter.DirOperationsListener {
|
||||
}
|
||||
|
||||
private fun gotDirectories(newDirs: ArrayList<Directory>, isFromCache: Boolean) {
|
||||
Thread {
|
||||
mLatestMediaId = getLatestMediaId()
|
||||
}.start()
|
||||
if (!isFromCache) {
|
||||
Thread {
|
||||
mLatestMediaId = getLatestMediaId()
|
||||
}.start()
|
||||
}
|
||||
|
||||
val dirs = getSortedDirectories(newDirs)
|
||||
directories_refresh_layout.isRefreshing = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user