Skip to content

Commit

Permalink
Fix issue with missing year value in year column (JabRef#5197)
Browse files Browse the repository at this point in the history
* Fix issue 5152, tooltip and icon added to group cell

* -fixed minor issue with style (empty line) in MainTableColumnFactory                                                                         -added key "Group color" into english language properties

* Fix issue of missing publication year of an entry when user  add content from IEEE library
  • Loading branch information
mmihuu authored and Siedlerchr committed Aug 21, 2019
1 parent 00722e1 commit 2b21cc7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/jabref/logic/importer/fetcher/IEEE.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ private static BibEntry parseJsonRespone(JSONObject jsonEntry, Character keyword
entry.setField(StandardField.AUTHOR, authors.stream().collect(Collectors.joining(" and ")));
entry.setField(StandardField.LOCATION, jsonEntry.optString("conference_location"));
entry.setField(StandardField.DOI, jsonEntry.optString("doi"));
entry.setField(StandardField.YEAR,jsonEntry.optString("publication_year"));
entry.setField(StandardField.PAGES, jsonEntry.optString("start_page") + "--" + jsonEntry.optString("end_page"));

JSONObject keywordsContainer = jsonEntry.optJSONObject("index_terms");
Expand Down

0 comments on commit 2b21cc7

Please sign in to comment.