mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-23 07:24:35 +00:00
Fix runtime critical from read marker sending (fixup 3a8fef7
)
This commit is contained in:
parent
e7bc68ad4d
commit
1db94905ae
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ public class ChatInteraction : StreamInteractionModule, Object {
|
|||
case Xep.ChatMarkers.MARKER_DISPLAYED:
|
||||
if (conversation.get_send_marker_setting(stream_interactor) == Conversation.Setting.ON) {
|
||||
if (message.type_ == Message.Type.GROUPCHAT) {
|
||||
if (message.stanza_id == null) return;
|
||||
if (message.server_id == null) return;
|
||||
stream.get_module(Xep.ChatMarkers.Module.IDENTITY).send_marker(stream, message.from.bare_jid, message.server_id, message.get_type_string(), Xep.ChatMarkers.MARKER_DISPLAYED);
|
||||
} else {
|
||||
if (message.stanza_id == null) return;
|
||||
|
|
Loading…
Reference in a new issue