mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
optimize temporary folder adding a bit
This commit is contained in:
parent
12cb855c3a
commit
640ff05e20
1 changed files with 6 additions and 4 deletions
|
@ -471,14 +471,16 @@ fun Context.loadImage(type: Int, path: String, target: MySquareImageView, horizo
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.addTempFolderIfNeeded(dirs: ArrayList<Directory>): ArrayList<Directory> {
|
fun Context.addTempFolderIfNeeded(dirs: ArrayList<Directory>): ArrayList<Directory> {
|
||||||
val directories = ArrayList<Directory>()
|
|
||||||
val tempFolderPath = config.tempFolderPath
|
val tempFolderPath = config.tempFolderPath
|
||||||
if (tempFolderPath.isNotEmpty()) {
|
return if (tempFolderPath.isNotEmpty()) {
|
||||||
|
val directories = ArrayList<Directory>()
|
||||||
val newFolder = Directory(null, tempFolderPath, "", tempFolderPath.getFilenameFromPath(), 0, 0, 0, 0L, getPathLocation(tempFolderPath), 0)
|
val newFolder = Directory(null, tempFolderPath, "", tempFolderPath.getFilenameFromPath(), 0, 0, 0, 0L, getPathLocation(tempFolderPath), 0)
|
||||||
directories.add(newFolder)
|
directories.add(newFolder)
|
||||||
}
|
|
||||||
directories.addAll(dirs)
|
directories.addAll(dirs)
|
||||||
return directories
|
directories
|
||||||
|
} else {
|
||||||
|
dirs
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.getPathLocation(path: String): Int {
|
fun Context.getPathLocation(path: String): Int {
|
||||||
|
|
Loading…
Reference in a new issue