summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index fd212f88..29ba477a 100644
--- a/src/core.py
+++ b/src/core.py
@@ -2095,7 +2095,7 @@ class Core(object):
reason = args[2] if len(args) > 2 else ''
to = safeJID(args[0])
room = safeJID(args[1])
- self.xmpp.plugin['xep_0045'].invite(room, to, reason)
+ self.xmpp.plugin['xep_0045'].invite(room, str(to), reason)
def completion_invite(self, the_input):
"""Completion for /invite"""