Fixed issue with jabber and ' in the name

This commit is contained in:
Raynaldo Rivera 2014-11-11 15:53:56 -07:00
parent 1eed8751ba
commit b7a295f128

View File

@ -24,6 +24,7 @@ class JabberManager:
@staticmethod @staticmethod
def __santatize_username(username): def __santatize_username(username):
sanatized = username.replace(" ", "_") sanatized = username.replace(" ", "_")
sanatized = sanatized.replace("'", "")
return sanatized.lower() return sanatized.lower()
@staticmethod @staticmethod