diff --git a/copyparty/svchub.py b/copyparty/svchub.py index 42478495..fd267059 100644 --- a/copyparty/svchub.py +++ b/copyparty/svchub.py @@ -1790,7 +1790,7 @@ class SvcHub(object): def parse_version(self, ver: str) -> tuple: match = re.search(r'[\d.]+', ver) if not match: - return () + return (0, 0, 0) clean = match.group(0).strip('.') return tuple(int(x) for x in clean.split("."))