mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 22:01:15 +00:00 
			
		
		
		
	Merge pull request #1010 from jjlin/admin-url
Avoid double-slashes in the admin URL
This commit is contained in:
		
				commit
				
					
						b03698fadb
					
				
			
		
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -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)] | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue