mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-10 14:24:31 +00:00
fix trailing slash not being removed from domain
This commit is contained in:
parent
a72d0b518f
commit
679bc7a59b
1 changed files with 2 additions and 1 deletions
|
@ -283,7 +283,8 @@ impl<'r> FromRequest<'r> for Host {
|
||||||
|
|
||||||
// Get host
|
// Get host
|
||||||
let host = if CONFIG.domain_set() {
|
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") {
|
} else if let Some(referer) = headers.get_one("Referer") {
|
||||||
referer.to_string()
|
referer.to_string()
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue