do not rescan the folder after removing nomedia

This commit is contained in:
tibbi 2017-05-21 20:39:01 +02:00
parent f5eb3c931e
commit 19ea96814e
1 changed files with 1 additions and 3 deletions

View File

@ -235,9 +235,7 @@ fun SimpleActivity.addNoMedia(path: String, callback: () -> Unit) {
fun SimpleActivity.removeNoMedia(path: String, callback: () -> Unit) {
val file = File(path, NOMEDIA)
deleteFile(file) {
scanFile(File(path)) {
callback()
}
callback()
}
}