diff options
author | Vitaly Takmazov | 2018-04-06 13:21:03 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-04-06 13:21:03 +0300 |
commit | fa698d98e0f24362fe55800ca6a431ada213a78d (patch) | |
tree | f55551a09f8bf606b900af820043d25c4ec26197 /juick-server-xmpp/src/main | |
parent | 7fc4e305e546f30340b8b6a72426723163e91858 (diff) |
server: CommandsManager does not depend on Jid
Diffstat (limited to 'juick-server-xmpp/src/main')
-rw-r--r-- | juick-server-xmpp/src/main/java/com/juick/server/XMPPConnection.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-server-xmpp/src/main/java/com/juick/server/XMPPConnection.java b/juick-server-xmpp/src/main/java/com/juick/server/XMPPConnection.java index 2bdec0a7..c800b65d 100644 --- a/juick-server-xmpp/src/main/java/com/juick/server/XMPPConnection.java +++ b/juick-server-xmpp/src/main/java/com/juick/server/XMPPConnection.java @@ -603,7 +603,7 @@ public class XMPPConnection implements StanzaListener, NotificationListener { command = command.substring(3); } - CommandResult result = commandsManager.processCommand(user_from, from, command.trim(), attachment); + CommandResult result = commandsManager.processCommand(user_from, command.trim(), attachment); if (StringUtils.isNotBlank(result.getText())) { sendReply(from, result.getText()); } |