0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-11 08:29:00 +02:00

fix trailing slash not being removed from domain

This commit is contained in:
BlockListed 2023-02-07 13:03:28 +01:00
parent a72d0b518f
commit 679bc7a59b
No known key found for this signature in database
GPG key ID: 2D204777C477B588

View file

@ -283,7 +283,8 @@ impl<'r> FromRequest<'r> for Host {
// Get host
let host = if CONFIG.domain_set() {
CONFIG.domain()
// Remove trailing slash if it exists since we're getting a host
CONFIG.domain().trim_end_matches('/').to_string()
} else if let Some(referer) = headers.get_one("Referer") {
referer.to_string()
} else {