mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Fixed issue 2680
Should not set empty string in auto-expand folder list.
This commit is contained in:
parent
3380cc8af4
commit
0206ebf809
@ -586,7 +586,7 @@ public class AccountSettings extends K9PreferenceActivity
|
||||
}
|
||||
final String[] allFolderValues = new String[folders.size()+2];
|
||||
final String[] allFolderLabels = new String[folders.size()+2];
|
||||
allFolderValues[0] = "";
|
||||
allFolderValues[0] = K9.FOLDER_NONE;
|
||||
allFolderLabels[0] = K9.FOLDER_NONE;
|
||||
|
||||
// There's a non-zero chance that "outbox" won't actually exist, so we force it into the list
|
||||
|
Loading…
Reference in New Issue
Block a user