Merge 0.12->trunk
authorKim Alvefur <zash@zash.se>
Fri, 27 May 2022 15:08:55 +0200
changeset 12531 923d6fe5ee41
parent 12528 dd5ab9a6b599 (current diff)
parent 12530 252ed01896dd (diff)
child 12532 8e780079a424
Merge 0.12->trunk
plugins/mod_smacks.lua
--- a/plugins/mod_smacks.lua	Thu May 26 19:24:01 2022 +0200
+++ b/plugins/mod_smacks.lua	Fri May 27 15:08:55 2022 +0200
@@ -56,7 +56,6 @@
 local it = require"util.iterators";
 
 local sessionmanager = require "core.sessionmanager";
-local core_process_stanza = prosody.core_process_stanza;
 
 local xmlns_errors = "urn:ietf:params:xml:ns:xmpp-stanzas";
 local xmlns_delay = "urn:xmpp:delay";
@@ -426,9 +425,9 @@
 		session.outgoing_stanza_queue = nil;
 		for stanza in queue._queue:consume() do
 			if not module:fire_event("delivery/failure", { session = session, stanza = stanza }) then
-				if stanza.attr.type ~= "error" and stanza.attr.to ~= session.full_jid then
+				if stanza.attr.type ~= "error" and stanza.attr.from ~= session.full_jid then
 					local reply = st.error_reply(stanza, "cancel", "recipient-unavailable");
-					core_process_stanza(session, reply);
+					module:send(reply);
 				end
 			end
 		end