mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Prevent crash
This commit is contained in:
@@ -2406,7 +2406,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
webView.setMinimumHeight(height);
|
||||
|
||||
int maxHeight = rv.getHeight() - rv.getPaddingTop();
|
||||
int maxHeight = (rv == null ? 0 : rv.getHeight() - rv.getPaddingTop());
|
||||
webView.init(height, maxHeight, size, position, force_light,
|
||||
new WebViewEx.IWebView() {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user