From b19928a298ca9a06091bdc540337afdb8d37bf53 Mon Sep 17 00:00:00 2001 From: dzan Date: Tue, 19 Jul 2011 13:37:36 +0200 Subject: [PATCH] Fixed the manual configuration ( I broke before ). --- src/com/fsck/k9/activity/setup/AccountSetupAccountType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/activity/setup/AccountSetupAccountType.java b/src/com/fsck/k9/activity/setup/AccountSetupAccountType.java index 4bfd2de17..25053841a 100644 --- a/src/com/fsck/k9/activity/setup/AccountSetupAccountType.java +++ b/src/com/fsck/k9/activity/setup/AccountSetupAccountType.java @@ -64,7 +64,7 @@ public class AccountSetupAccountType extends K9Activity implements OnClickListen ((Button)findViewById(R.id.imap)).setOnClickListener(this); ((Button)findViewById(R.id.webdav)).setOnClickListener(this); - if( getIntent().getStringExtra(EXTRA_IS_MANUAL) != null){ + if( getIntent().getBooleanExtra(EXTRA_IS_MANUAL, false) ){ mAccount = Account.getBlankAccount(this, getIntent().getStringExtra(EXTRA_EMAIL), getIntent().getStringExtra(EXTRA_PASSWORD));