Small improvement

This commit is contained in:
M66B
2019-11-30 14:05:28 +01:00
parent d0a8af140e
commit 26a3381009
2 changed files with 2 additions and 1 deletions

View File

@@ -1643,7 +1643,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean auto_decrypt = prefs.getBoolean("auto_decrypt", false);
if (auto_decrypt && (is_signed || is_encrypted))
if (auto_decrypt && is_encrypted)
onActionDecrypt(message, true);
cbInline.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {