v0.13-dockerP1

This commit is contained in:
2022-11-28 00:08:14 +05:30
parent 131ab0cf9e
commit 9d3c1fc295
6 changed files with 47 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ async fn create_by_isbn(
}
let mut goodread_id = "".to_string();
if !bookfound.unwrap().identifiers.is_none() {
let goodread_identifier = bookfound.clone().unwrap().identifiers.clone().unwrap().goodreads
let goodread_identifier = bookfound.clone().unwrap().identifiers.clone().unwrap().goodreads;
if !goodread_identifier.is_none() {
goodread_id = goodread_identifier.unwrap().get(0).unwrap().to_string()
}