You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, psl::suffix_str(".") and psl::suffix_str("..") return Some(""), which seems to be be in violation of that rule?
Interestngly, while psl::domain_str("com..") returns Some("com.") (consistent with the above), psl::domain_str("..") returns None, which seems like the "labels cannot be empty" rule is observed for the not suffix part of a registerable domain.
The text was updated successfully, but these errors were encountered:
The very informal "formal" PSL algorithm specifies that labels cannot be empty.
Currently,
psl::suffix_str(".")
andpsl::suffix_str("..")
returnSome("")
, which seems to be be in violation of that rule?Interestngly, while
psl::domain_str("com..")
returnsSome("com.")
(consistent with the above),psl::domain_str("..")
returnsNone
, which seems like the "labels cannot be empty" rule is observed for the not suffix part of a registerable domain.The text was updated successfully, but these errors were encountered: