Update build image to Rust 1.51 #8

Merged
cameron merged 3 commits from feature/update-to-1.51 into master 2021-03-26 12:40:26 +00:00
Showing only changes of commit 53cdbabae1 - Show all commits

View File

@@ -240,7 +240,7 @@ async fn post_add_favorite(claims: Claims, body: web::Json<AddFavoriteRequest>)
})
.await
.unwrap();
debug!("Adding favorite \"{}\" for userid: {}", user_id, body.path);
debug!("Adding favorite \"{}\" for userid: {}", body.path, user_id);
HttpResponse::Ok()
} else {
error!("Unable to parse sub as i32: {}", claims.sub);