mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-25 07:08:30 +01:00
Prevent crash
This commit is contained in:
@@ -913,12 +913,13 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
|
||||
Log.w("Inferring type of value=" + value);
|
||||
if (value instanceof Boolean)
|
||||
editor.putBoolean(key, (Boolean) value);
|
||||
else if (value instanceof Integer)
|
||||
else if (value instanceof Integer) {
|
||||
Integer i = (Integer) value;
|
||||
if (key.endsWith(".account"))
|
||||
editor.putLong(key, (Long) value);
|
||||
editor.putLong(key, Long.valueOf(i));
|
||||
else
|
||||
editor.putInt(key, (Integer) value);
|
||||
else if (value instanceof Long)
|
||||
editor.putInt(key, i);
|
||||
} else if (value instanceof Long)
|
||||
editor.putLong(key, (Long) value);
|
||||
else if (value instanceof String)
|
||||
editor.putString(key, (String) value);
|
||||
|
||||
Reference in New Issue
Block a user