1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-30 19:24:42 +02:00

Avoid double-slashes in the admin URL

Dieser Commit ist enthalten in:
Jeremy Lin 2020-05-30 01:06:40 -07:00
Ursprung 4eee6e7aee
Commit 39d1a09704

Datei anzeigen

@ -63,7 +63,9 @@ fn admin_path() -> String {
/// Used for `Location` response headers, which must specify an absolute URI
/// (see https://tools.ietf.org/html/rfc2616#section-14.30).
fn admin_url() -> String {
format!("{}{}", CONFIG.domain(), ADMIN_PATH)
// Don't use CONFIG.domain() directly, since the user may want to keep a
// trailing slash there, particularly when running under a subpath.
format!("{}{}{}", CONFIG.domain_origin(), CONFIG.domain_path(), ADMIN_PATH)
}
#[get("/", rank = 2)]