diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-06-26 09:12:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 09:12:39 +0200 |
commit | b60c5fb605893be51840b742bf3e3c89c5b446a5 (patch) | |
tree | d4614d90b7c997fc20d98758d3b55dd4a4fd3cd9 /app | |
parent | 6b5984dfe65a538a9b96878dff66aea4743a5f79 (diff) |
Use remembered credential even if it is empty (#880)
* Use remembered credential even if it is empty
Should fix #875.
* .isNull() --> == null
* Update relnotes
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* Reword relnotes
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* 2019 it is
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/git/GitOperation.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/git/GitOperation.kt b/app/src/main/java/com/zeapo/pwdstore/git/GitOperation.kt index 6df5f65d..8cf09b39 100644 --- a/app/src/main/java/com/zeapo/pwdstore/git/GitOperation.kt +++ b/app/src/main/java/com/zeapo/pwdstore/git/GitOperation.kt @@ -67,7 +67,7 @@ private class GitOperationCredentialFinder(val callingActivity: Activity, val co val storedCredential = gitOperationPrefs.getString(credentialPref, null) if (isRetry) gitOperationPrefs.edit { remove(credentialPref) } - if (storedCredential.isNullOrEmpty()) { + if (storedCredential == null) { val layoutInflater = LayoutInflater.from(callingActivity) @SuppressLint("InflateParams") |