Allow . in nickname, since this seems to exist in the wild

I may regret this later
main
bashrc 2026-04-13 17:57:10 +01:00
parent cd899fc2d5
commit 19c33fc5e1
1 changed files with 1 additions and 1 deletions

View File

@ -2635,7 +2635,7 @@ def valid_nickname(domain: str, nickname: str) -> bool:
return False
if not _is_valid_language(nickname):
return False
forbidden_chars = ('.', ' ', '/', ':', '@')
forbidden_chars = (' ', '/', ':', '@')
for char in forbidden_chars:
if char in nickname:
return False