mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 09:01:30 +01:00
Simplifications
This commit is contained in:
@@ -123,8 +123,7 @@ public class EntityOperation {
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean autoread = prefs.getBoolean("autoread", false);
|
||||
if (jargs.length() > 1)
|
||||
autoread = (autoread && jargs.getBoolean(1));
|
||||
autoread = (autoread && jargs.optBoolean(1, true));
|
||||
jargs.put(1, autoread);
|
||||
|
||||
EntityFolder source = db.folder().getFolder(message.folder);
|
||||
|
||||
Reference in New Issue
Block a user