add an extra check to remove the empty "Favorites" folder if necessary
This commit is contained in:
parent
624a0d5ca3
commit
b93ab89731
1 changed files with 7 additions and 0 deletions
|
@ -572,6 +572,13 @@ class MediaActivity : SimpleActivity(), MediaOperationsListener {
|
||||||
deleteDirectoryIfEmpty()
|
deleteDirectoryIfEmpty()
|
||||||
deleteDBDirectory()
|
deleteDBDirectory()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mPath == FAVORITES) {
|
||||||
|
Thread {
|
||||||
|
galleryDB.DirectoryDao().deleteDirPath(FAVORITES)
|
||||||
|
}.start()
|
||||||
|
}
|
||||||
|
|
||||||
finish()
|
finish()
|
||||||
true
|
true
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue