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;
|
||||
} else {
|
||||
return new GiphyMp4PlaybackPolicyEnforcer(() -> {
|
||||
eventListener.onPlayInlineContent(null);
|
||||
if (eventListener != null) {
|
||||
eventListener.onPlayInlineContent(null);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue