Skip to content
Snippets Groups Projects
Commit f8c31726 authored by nkour's avatar nkour
Browse files

logic fix

parent 43aef76d
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ def get_nick_from_jid(jid):
return jid[:pos]
def get_server_from_jid(jid):
pos = jid.find('@')
pos = jid.find('@') + 1 # after @
return jid[pos:]
def get_nick_from_fjid(jid):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment