mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-09-05 00:35:29 +00:00
PasswordRepository: Refactor getRepositoryDirectory to be non-nullable
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
@@ -138,20 +138,14 @@ open class PasswordRepository protected constructor() {
|
||||
}
|
||||
|
||||
@JvmStatic
|
||||
fun getRepositoryDirectory(context: Context): File? {
|
||||
var dir: File? = null
|
||||
fun getRepositoryDirectory(context: Context): File {
|
||||
val settings = PreferenceManager.getDefaultSharedPreferences(context.applicationContext)
|
||||
|
||||
if (settings.getBoolean("git_external", false)) {
|
||||
return if (settings.getBoolean("git_external", false)) {
|
||||
val externalRepo = settings.getString("git_external_repo", null)
|
||||
if (externalRepo != null) {
|
||||
dir = File(externalRepo)
|
||||
}
|
||||
File(requireNotNull(externalRepo))
|
||||
} else {
|
||||
dir = File(context.filesDir.toString() + "/store")
|
||||
File(context.filesDir.toString() + "/store")
|
||||
}
|
||||
|
||||
return dir
|
||||
}
|
||||
|
||||
@JvmStatic
|
||||
@@ -159,10 +153,6 @@ open class PasswordRepository protected constructor() {
|
||||
val dir = getRepositoryDirectory(context)
|
||||
val settings = PreferenceManager.getDefaultSharedPreferences(context.applicationContext)
|
||||
|
||||
if (dir == null) {
|
||||
return null
|
||||
}
|
||||
|
||||
// uninitialize the repo if the dir does not exist or is absolutely empty
|
||||
if (!dir.exists() || !dir.isDirectory || dir.listFiles()!!.isEmpty()) {
|
||||
settings.edit().putBoolean("repository_initialized", false).apply()
|
||||
|
Reference in New Issue
Block a user