mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-04 14:57:44 +00:00
Fix chat marker sending
This commit is contained in:
parent
890b91ce4d
commit
62be692c02
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ public class ChatInteraction : StreamInteractionModule, Object {
|
|||
XmppStream? stream = stream_interactor.get_stream(conversation.account);
|
||||
if (stream == null) return;
|
||||
|
||||
if (message.stanza_id != null) return; // Need a stanza id to mark
|
||||
if (message.stanza_id == null) return; // Need a stanza id to mark
|
||||
|
||||
switch (marker) {
|
||||
case Xep.ChatMarkers.MARKER_RECEIVED:
|
||||
|
|
Loading…
Reference in a new issue