Fix 'from' address in the XMPP ping command

This commit corrects a syntax error that caused the XMPP daemon to
reatedly reconnect to the remote server.
This commit is contained in:
Andrew Engelbrecht 2017-04-13 12:23:12 -04:00
parent 75079320d1
commit 25b4996145
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ class XmppManager extends ImManager
}
common_log(LOG_DEBUG, "Sending ping #{$this->pingid}");
$this->conn->send("<iq from='{" . $this->plugin->daemonScreenname() . "}' to='{$this->plugin->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
$this->conn->send("<iq from='{$this->plugin->daemonScreenname()}' to='{$this->plugin->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
$this->lastping = $now;
return true;
}