Skip to content

Commit

Permalink
Fix bug, this closes issue #79
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Wang committed Nov 14, 2018
1 parent bb93ce0 commit 3d78fab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract class BaseActivity : AppCompatActivity() {
if (WalletApplication.appReturnedFromBackground) {
WalletApplication.appReturnedFromBackground = false

if (!WalletApplication.localStore.encryptedPhrase.isNullOrEmpty()) {
if (!WalletApplication.localStore.encryptedPhrase.isNullOrEmpty() && !WalletApplication.localStore.stellarAccountId.isNullOrEmpty()) {
launchPINView(PinType.LOGIN, "", "", null, true)
}
}
Expand Down

0 comments on commit 3d78fab

Please sign in to comment.