dev #17

Merged
edraft merged 31 commits from dev into master 2025-03-12 10:09:01 +01:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 2dac04d1a4 - Show all commits

View File

@ -29,6 +29,9 @@ class ShortUrl(DbModelABC):
self._description = description
self._group_id = group_id
self._domain_id = domain_id
if loading_screen is None or loading_screen == "":
loading_screen = False
self._loading_screen = loading_screen
@property

View File

@ -164,7 +164,9 @@ async def _track_visit(r: Request, short_url: dict):
def _get_redirect_url(url: str) -> str:
if not url.startswith("http://") and not url.startswith("https://"):
protocols = Environment.get("PROTOCOLS", list[str], ["http", "https"])
if not any(url.startswith(f"{protocol}://") for protocol in protocols):
url = f"http://{url}"
return url