Merge pull request #3228 from BlockListed/fix-domain-description

Fix trailing slash not getting removed from domain
This commit is contained in:
Daniel García 2023-02-12 18:42:55 +01:00 committed by GitHub
commit e301fe137f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,6 +141,8 @@ macro_rules! make_config {
)+)+
config.domain_set = _domain_set;
config.domain = config.domain.trim_end_matches('/').to_string();
config.signups_domains_whitelist = config.signups_domains_whitelist.trim().to_lowercase();
config.org_creation_users = config.org_creation_users.trim().to_lowercase();