Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
don't print raw API response after updating book progress
Browse files Browse the repository at this point in the history
  • Loading branch information
thundergolfer-two committed Sep 28, 2019
1 parent 827ef02 commit dd4ec2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ impl GoodreadsApiClient {
);

match res {
Ok(mut resp) => {
println!("Updated: {}", resp.text().unwrap());
Ok(mut _resp) => {
// println!("Updated: {}", resp.text().unwrap());
Ok(())
}
Err(err) => Err(format!("Request failed: {}", err)),
Expand Down

0 comments on commit dd4ec2d

Please sign in to comment.