From 3918bfd9b50f0798a3737d9ccf6c47df1c345f58 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Mon, 24 Jun 2024 15:24:34 -0500 Subject: [PATCH] Fix not getting history for MUC --- snikket/Chat.hx | 1 - 1 file changed, 1 deletion(-) diff --git a/snikket/Chat.hx b/snikket/Chat.hx index add4521..6d8228a 100644 --- a/snikket/Chat.hx +++ b/snikket/Chat.hx @@ -755,7 +755,6 @@ class Channel extends Chat { @HaxeCBridge.noemit // on superclass as abstract public function getMessages(beforeId:Null, beforeTime:Null, handler:(Array)->Void):Void { - return; persistence.getMessages(client.accountId(), chatId, beforeId, beforeTime, (messages) -> { if (messages.length > 0) { handler(messages);