Skip to content

Commit

Permalink
[Issue comixed#208] Only retrieve the publisher's small logo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed May 8, 2020
1 parent 3649e78 commit 9ad3ca0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void process(byte[] content, Comic comic) throws ComicVineAdaptorExceptio
String comicVineUrl = jsonNode.get("results").get("site_detail_url").asText();
String description = jsonNode.get("results").get("deck").asText();
String thumbnailUrl = jsonNode.get("results").get("image").get("thumb_url").asText();
String logoUrl = jsonNode.get("results").get("image").get("original_url").asText();
String logoUrl = jsonNode.get("results").get("image").get("small_url").asText();

if (IMPRINT_MAPPINGS.containsKey(publisher)) {
this.log.debug("Publisher is an imprint");
Expand Down

0 comments on commit 9ad3ca0

Please sign in to comment.