mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-09 18:25:58 +03:00
fix trailing slash in configuration builder
This commit is contained in:
@@ -141,6 +141,14 @@ macro_rules! make_config {
|
||||
)+)+
|
||||
config.domain_set = _domain_set;
|
||||
|
||||
if config.domain_set {
|
||||
if config.domain.ends_with('/') {
|
||||
println!("[WARNING] The configured domain ends with a trailing slash.");
|
||||
println!("[WARNING] The trailing slash is getting removed.");
|
||||
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();
|
||||
|
||||
|
Reference in New Issue
Block a user