main
bashrc 2026-04-24 12:06:59 +01:00
parent 5a1cece30e
commit 15d0c1defa
1 changed files with 1 additions and 1 deletions

View File

@ -4044,7 +4044,7 @@ def resembles_domain(text: str) -> bool:
return True return True
# yggdrasil address # yggdrasil address
if (text.startswith('[') and text.endswith(']') and ':' in text): if text.startswith('[') and text.endswith(']') and ':' in text:
return True return True
return False return False