Expand definition of URL

This commit is contained in:
Et0h 2015-06-18 21:22:41 +01:00
parent aa0db2517b
commit d4eabcebca

View File

@ -222,10 +222,7 @@ def isURL(path):
if path is None:
return False
if "http://" in path:
return True
elif "https://" in path:
if "://" in path:
return True
class RoomPasswordProvider(object):