diff --git a/taiga/base/utils/urls.py b/taiga/base/utils/urls.py index 2e5d71be..df3ece45 100644 --- a/taiga/base/utils/urls.py +++ b/taiga/base/utils/urls.py @@ -9,7 +9,7 @@ def build_url(path, scheme="http", domain="localhost"): def is_absolute_url(path): """Test wether or not `path` is absolute url.""" - return path.startswith("http") + return path.startswith("http") or path.startswith("https") def get_absolute_url(path):