diff options
author | Vika <vika@fireburn.ru> | 2021-09-27 17:39:43 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-09-27 17:39:43 +0300 |
commit | 5e291ca70ca2712696fa5378894e4204679a5f7d (patch) | |
tree | eed78a230982e6cc394dc47daa304ef8ace3f1ac /src/lib.rs | |
parent | f894d1746b94d60cd22260b933948f4169ece9ae (diff) | |
download | kittybox-5e291ca70ca2712696fa5378894e4204679a5f7d.tar.zst |
Fix a bug in the error middleware
When an error is found, the site name passed to Storage::get_setting in the error handler is incorrect. The ASCII serialisation of the hostname should get used.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs index 1c6394a..dfcfe6d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -94,12 +94,14 @@ pub async fn get_app_with_file( media_endpoint: Option<String>, internal_token: Option<String>, ) -> App<database::FileStorage> { + let folder = backend_uri.strip_prefix("file://").unwrap(); + let path = std::path::PathBuf::from(folder); let app = tide::with_state(ApplicationState { token_endpoint, media_endpoint, authorization_endpoint, internal_token, - storage: database::FileStorage::new(todo!()).await.unwrap(), + storage: database::FileStorage::new(path).await.unwrap(), http_client: surf::Client::new(), }); |