mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-05 23:28:57 +01:00
Remove debug code during attachment download
There was some debug code during attachment downloads. This produces extra logs not needed or even wanted.
This commit is contained in:
parent
ab65d7989b
commit
4ec2507073
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ async fn web_files(p: PathBuf) -> Cached<Option<NamedFile>> {
|
|||
|
||||
#[get("/attachments/<uuid>/<file_id>?<token>")]
|
||||
async fn attachments(uuid: SafeString, file_id: SafeString, token: String) -> Option<NamedFile> {
|
||||
let Ok(claims) = dbg!(decode_file_download(&token)) else { return None };
|
||||
let Ok(claims) = decode_file_download(&token) else { return None };
|
||||
if claims.sub != *uuid || claims.file_id != *file_id {
|
||||
return None;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue