diff --git a/src/gen/lib/url.py b/src/gen/lib/url.py index df5896e87..a407fcae1 100644 --- a/src/gen/lib/url.py +++ b/src/gen/lib/url.py @@ -141,5 +141,7 @@ class Url(SecondaryObject, PrivacyBase): return "mailto:" + self.path elif url.get_type() == UrlType.WEB_FTP and not self.path.startswith("ftp://"): return "ftp://" + self.path + elif self.parse_path().scheme == '': + return "http://" + self.path else: return self.path