kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix NPE when eventListener is not set.
rodzic
4b3580d98a
commit
6625ac02d5
|
@ -1683,7 +1683,9 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
return new GiphyMp4PlaybackPolicyEnforcer(() -> {
|
return new GiphyMp4PlaybackPolicyEnforcer(() -> {
|
||||||
|
if (eventListener != null) {
|
||||||
eventListener.onPlayInlineContent(null);
|
eventListener.onPlayInlineContent(null);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue