Merge pull request #760 from MarinPostma/typo-update-id

fix typo in error message
This commit is contained in:
Clément Renault 2020-06-06 11:02:52 +02:00 committed by GitHub
commit 18b56c6af8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ async fn get_update_status(
match status {
Some(status) => Ok(HttpResponse::Ok().json(status)),
None => Err(Error::NotFound(format!(
"Update {} not found",
"Update {}",
path.update_id
)).into()),
}