git » sdk » commit 8126846

MUC PM doesn't use channel mam

author Stephen Paul Weber
2026-05-26 21:37:01 UTC
committer Stephen Paul Weber
2026-05-26 21:37:01 UTC
parent 3658a781a96b14114daef2778232f2d9aa154459

MUC PM doesn't use channel mam

borogove/ChatMessage.hx +1 -1

diff --git a/borogove/ChatMessage.hx b/borogove/ChatMessage.hx
index f199f39..b21572e 100644
--- a/borogove/ChatMessage.hx
+++ b/borogove/ChatMessage.hx
@@ -331,7 +331,7 @@ class ChatMessage {
 	@:allow(borogove)
 	private function getReplyId() {
 		if (replyId != null) return replyId;
-		return type == MessageChannel || type == MessageChannelPrivate ? serverId : localId;
+		return type == MessageChannel ? serverId : localId;
 	}
 
 	@:allow(borogove)