mirror of
https://github.com/flibusta-apps/telegram_files_cache_server.git
synced 2025-12-06 14:45:36 +01:00
Update deps
This commit is contained in:
@@ -83,12 +83,12 @@ async fn get_link(
|
||||
Ok(data) => {
|
||||
match data {
|
||||
Some(data) => Json(data).into_response(),
|
||||
None => return StatusCode::NO_CONTENT.into_response(),
|
||||
None => StatusCode::NO_CONTENT.into_response(),
|
||||
}
|
||||
},
|
||||
Err(err) => {
|
||||
log::error!("{:?}", err);
|
||||
return StatusCode::NO_CONTENT.into_response();
|
||||
StatusCode::NO_CONTENT.into_response()
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user