Skip to content

Commit

Permalink
[Issue #208] Correct the fields returned when scraping an issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed May 9, 2020
1 parent efd4b3e commit 3280b79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void addFilter(String name, String value) {
* @param name the parameter name
* @param value the parameter value
*/
protected void addParameter(String name, String value) {
public void addParameter(String name, String value) {
this.log.debug("Adding parameter: {}={}", name, value);
this.parameterSet.put(name, value);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void execute(String apiKey, String publisherId, Comic comic, boolean skip

request.setApiKey(apiKey);
request.setPublisherId(publisherId);
request.addFilter("field_list", "id,name,image,api_detail_url,deck");
request.addParameter("field_list", "id,name,image,api_detail_url,deck,site_detail_url");

try {
content = this.webRequestProcessor.execute(request);
Expand Down

0 comments on commit 3280b79

Please sign in to comment.