aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ice_validator/vvp.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ice_validator/vvp.py b/ice_validator/vvp.py
index 43baee0..8db2d51 100644
--- a/ice_validator/vvp.py
+++ b/ice_validator/vvp.py
@@ -425,7 +425,9 @@ class Config:
@property
def requirement_link_url(self) -> str:
path = self._config["ui"].get("requirement-link-url", "")
- return "file://{}".format(os.path.join(PATH, path))
+ if not path.startswith("http"):
+ path = "file://{}".format(os.path.join(PATH, path))
+ return path
@property
def terms(self) -> dict: