1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Small fix

This commit is contained in:
M66B 2022-05-30 07:35:37 +02:00
parent 59be976218
commit 5218b1598c

View file

@ -125,7 +125,7 @@ public class NavMenuItem {
boolean onLongClick() {
try {
return longClick.call();
return (longClick != null && longClick.call());
} catch (Throwable ex) {
Log.e(ex);
}