mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
Merge pull request #2800 from Naveen3Singh/fix_no_media_deletion
Fix deleting hidden files
This commit is contained in:
commit
2da6302775
1 changed files with 9 additions and 2 deletions
|
@ -253,9 +253,16 @@ fun BaseSimpleActivity.removeNoMedia(path: String, callback: (() -> Unit)? = nul
|
|||
|
||||
tryDeleteFileDirItem(file.toFileDirItem(applicationContext), false, false) {
|
||||
callback?.invoke()
|
||||
deleteFromMediaStore(file.absolutePath)
|
||||
deleteFromMediaStore(file.absolutePath) { needsRescan ->
|
||||
if (needsRescan) {
|
||||
rescanAndDeletePath(path) {
|
||||
rescanFolderMedia(path)
|
||||
}
|
||||
} else {
|
||||
rescanFolderMedia(path)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun BaseSimpleActivity.toggleFileVisibility(oldPath: String, hide: Boolean, callback: ((newPath: String) -> Unit)? = null) {
|
||||
|
|
Loading…
Reference in a new issue