mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Prevent crash
This commit is contained in:
parent
2ba9a28098
commit
b436f7ee8a
1 changed files with 1 additions and 1 deletions
|
@ -2342,8 +2342,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
if (!show_expanded)
|
||||
return;
|
||||
|
||||
boolean show_full = args.getBoolean("show_full");
|
||||
boolean has_images = args.getBoolean("has_images");
|
||||
boolean show_full = properties.getValue("full", message.id);
|
||||
boolean always_images = prefs.getBoolean("html_always_images", false);
|
||||
|
||||
// Show images
|
||||
|
|
Loading…
Reference in a new issue