# HG changeset patch # User Kim Alvefur # Date 1546528051 -3600 # Node ID 1f0c290bd28a5ae6100fe38f26724e3ae214f44a # Parent 1962c94e2203ad74f06752286f67993446f265ec mod_pubsub_text_interface: Send replies trough normal stanza routing This should fix interaction Carbons, which was bypassed when sending directly to the origin session. diff -r 1962c94e2203 -r 1f0c290bd28a mod_pubsub_text_interface/mod_pubsub_text_interface.lua --- a/mod_pubsub_text_interface/mod_pubsub_text_interface.lua Thu Jan 03 14:01:58 2019 +0000 +++ b/mod_pubsub_text_interface/mod_pubsub_text_interface.lua Thu Jan 03 16:07:31 2019 +0100 @@ -64,6 +64,6 @@ else reply:body("Unknown command. `help` to list commands."); end - origin.send(reply); + module:send(reply); return true; end);