diff --git a/genshin/models/hoyolab/web_event.py b/genshin/models/hoyolab/web_event.py index dc1009ab..df27a7ab 100644 --- a/genshin/models/hoyolab/web_event.py +++ b/genshin/models/hoyolab/web_event.py @@ -24,4 +24,6 @@ class WebEvent(APIModel): @property def url(self) -> str: + if "https" in self.web_path: + return self.web_path return f"https://www.hoyolab.com{self.web_path}"