Disable conversation actions by default

This commit is contained in:
M66B
2021-11-02 13:58:14 +01:00
parent 17ba2ce90e
commit a70175400f
3 changed files with 6 additions and 2 deletions

View File

@@ -541,6 +541,10 @@ public class ApplicationEx extends Application
editor.putBoolean("discard_delete", false);
} else if (version < 1753)
repairFolders(context);
else if (version < 1771) {
if (!prefs.contains("conversation_actions"))
editor.putBoolean("conversation_actions", false);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)
editor.remove("background_service");