Fix our auto-expand folder behavior - Fixes issue 918

This commit is contained in:
Jesse Vincent 2009-12-17 03:45:37 +00:00
parent a292e3de73
commit ce44165634
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ public class Accounts extends K9ListActivity implements OnItemClickListener, OnC
private void onOpenAccount(Account account, boolean startup)
{
if (account.getAutoExpandFolderName() == null)
if (K9.FOLDER_NONE.equals(account.getAutoExpandFolderName()))
{
FolderList.actionHandleAccount(this, account, startup);
}