if something goes wrong at storing ever shown folders, just clear it

This commit is contained in:
tibbi 2018-07-04 11:22:39 +02:00
parent 9559b84be5
commit fc1d17397c
1 changed files with 2 additions and 1 deletions

View File

@ -786,7 +786,8 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
try {
config.everShownFolders = everShownFolders
} catch (ignored: Exception) {
} catch (e: Exception) {
config.everShownFolders = HashSet()
}
}