# HG changeset patch # User Waqas Hussain # Date 1339710837 -18000 # Node ID 7a4f00168260e0a86ce4e29a20236b6f290b196b # Parent 42ac50c0382e6529c7affafc41448671a2162ea1 mod_dialback: Skip an unnecessary nameprep. diff -r 42ac50c0382e -r 7a4f00168260 plugins/mod_dialback.lua --- a/plugins/mod_dialback.lua Wed Jun 13 11:47:04 2012 +0500 +++ b/plugins/mod_dialback.lua Fri Jun 15 02:53:57 2012 +0500 @@ -84,7 +84,7 @@ origin.from_host = from; end if not origin.to_host then - origin.to_host = nameprep(attr.to); + origin.to_host = to; end origin.log("debug", "asking %s if key %s belongs to them", from, stanza[1]);