Skip to content

Commit

Permalink
Work around a bug in Android 4.x (?) when the system locale is turkish
Browse files Browse the repository at this point in the history
  • Loading branch information
cketti committed May 20, 2012
1 parent 0e7a842 commit 533afae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/fsck/k9/preferences/Storage.java
Expand Up @@ -213,7 +213,7 @@ protected void put(String key, String value) {
}

protected void put(Map<String, String> insertables) {
String sql = "insert into preferences_storage (primkey, value) VALUES (?, ?)";
String sql = "INSERT INTO preferences_storage (primkey, value) VALUES (?, ?)";
SQLiteStatement stmt = workingDB.get().compileStatement(sql);

for (Map.Entry<String, String> entry : insertables.entrySet()) {
Expand Down

0 comments on commit 533afae

Please sign in to comment.