mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
Minor code improvements
This commit is contained in:
parent
e2d0767cc3
commit
46533e4b45
1 changed files with 6 additions and 8 deletions
|
@ -373,18 +373,16 @@ fun Context.rescanFolderMedia(path: String) {
|
|||
}
|
||||
|
||||
fun Context.rescanFolderMediaSync(path: String) {
|
||||
getCachedMedia(path) {
|
||||
val cached = it
|
||||
GetMediaAsynctask(applicationContext, path, false, false, false) {
|
||||
getCachedMedia(path) { cached ->
|
||||
GetMediaAsynctask(applicationContext, path, isPickImage = false, isPickVideo = false, showAll = false) { newMedia ->
|
||||
ensureBackgroundThread {
|
||||
val newMedia = it
|
||||
val media = newMedia.filter { it is Medium } as ArrayList<Medium>
|
||||
val media = newMedia.filterIsInstance<Medium>() as ArrayList<Medium>
|
||||
try {
|
||||
mediaDB.insertAll(media)
|
||||
|
||||
cached.forEach {
|
||||
if (!newMedia.contains(it)) {
|
||||
val mediumPath = (it as? Medium)?.path
|
||||
cached.forEach { thumbnailItem ->
|
||||
if (!newMedia.contains(thumbnailItem)) {
|
||||
val mediumPath = (thumbnailItem as? Medium)?.path
|
||||
if (mediumPath != null) {
|
||||
deleteDBPath(mediumPath)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue