diff --git a/syncplay/utils.py b/syncplay/utils.py index ceb54d4..86a2d85 100644 --- a/syncplay/utils.py +++ b/syncplay/utils.py @@ -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):