plugins/mod_admin_telnet.lua
changeset 9738 cc01bb7a3305
parent 9715 39dc037875e1
child 9739 2d8ca54ecbc6
--- a/plugins/mod_admin_telnet.lua	Fri Dec 28 20:51:31 2018 +0100
+++ b/plugins/mod_admin_telnet.lua	Fri Dec 28 20:56:01 2018 +0100
@@ -1067,13 +1067,12 @@
 
 local st = require "util.stanza";
 function def_env.xmpp:ping(localhost, remotehost)
-	if prosody.hosts[localhost] then
-		module:send(st.iq{ from=localhost, to=remotehost, type="get", id="ping" }
-				:tag("ping", {xmlns="urn:xmpp:ping"}), prosody.hosts[localhost]);
-		return true, "Sent ping";
-	else
+	if not prosody.hosts[localhost] then
 		return nil, "No such host";
 	end
+	module:send(st.iq{ from=localhost, to=remotehost, type="get", id="ping" }
+			:tag("ping", {xmlns="urn:xmpp:ping"}), prosody.hosts[localhost]);
+	return true, "Sent ping";
 end
 
 def_env.dns = {};