1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Save capabilities in upper case so we handle them case-insensitively,

too.  Make sure all CAPABILITY-detection constants are written in
upper case.
This commit is contained in:
Daniel Applebaum 2010-05-20 04:19:15 +00:00
parent d873ecbe7a
commit 59f22d8e7e

View File

@ -2039,7 +2039,7 @@ public class ImapStore extends Store
// {
// Log.v(K9.LOG_TAG, "Saving capability '" + capability + "' for " + getLogId());
// }
capabilities.add((String)capability);
capabilities.add(((String)capability).toUpperCase());
}
}