From 01450c042af1790cef3e4f78a102d0e474c0af26 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sun, 19 Oct 2025 14:19:43 +0300 Subject: [PATCH] SPARK-2355: ChatViewer: migrate removeExtension() --- .../org/jivesoftware/fastpath/workspace/panes/ChatViewer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fastpath/src/main/java/org/jivesoftware/fastpath/workspace/panes/ChatViewer.java b/plugins/fastpath/src/main/java/org/jivesoftware/fastpath/workspace/panes/ChatViewer.java index 6008d755a..349ae5bd6 100644 --- a/plugins/fastpath/src/main/java/org/jivesoftware/fastpath/workspace/panes/ChatViewer.java +++ b/plugins/fastpath/src/main/java/org/jivesoftware/fastpath/workspace/panes/ChatViewer.java @@ -79,7 +79,7 @@ public class ChatViewer extends JPanel { if (delayInformation != null) { stamp = delayInformation.getStamp(); } - message.removeExtension(delayInformation); + message.removeExtension(delayInformation.getElementName(), delayInformation.getNamespace()); chatWindow.insertMessage(from, message, ChatManager.TO_COLOR); final Map properties = new HashMap<>(); properties.put("date", stamp);