# HG changeset patch # User Kim Alvefur # Date 1572453232 -3600 # Node ID c05444119e9ec2bbc2f41a56a9d14336a80ba082 # Parent 6e051bfca12d5bf88afbccd862c8ee3656d06a5f Backed out changeset 64ddcbc9a328 as it would prevent communicating with valid remote JIDs that aren't valid under STRINGPREP / Unicode 3.2 diff -r 6e051bfca12d -r c05444119e9e core/stanza_router.lua --- a/core/stanza_router.lua Mon Sep 23 19:13:14 2019 +0200 +++ b/core/stanza_router.lua Wed Oct 30 17:33:52 2019 +0100 @@ -83,7 +83,7 @@ if full_sessions[to] or bare_sessions[to] or hosts[to] then node, host = jid_split(to); -- TODO only the host is needed, optimize else - node, host, resource = jid_prepped_split(to, origin.type == "c2s"); + node, host, resource = jid_prepped_split(to); if not host then log("warn", "Received stanza with invalid destination JID: %s", to); if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then