Skip to content

Commit 2b21cc7

Browse files
mmihuuSiedlerchr
authored andcommitted
Fix issue with missing year value in year column (#5197)
* 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
1 parent 00722e1 commit 2b21cc7

File tree

1 file changed

+1
-0
lines changed
  • src/main/java/org/jabref/logic/importer/fetcher

1 file changed

+1
-0
lines changed

src/main/java/org/jabref/logic/importer/fetcher/IEEE.java

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ private static BibEntry parseJsonRespone(JSONObject jsonEntry, Character keyword
9191
entry.setField(StandardField.AUTHOR, authors.stream().collect(Collectors.joining(" and ")));
9292
entry.setField(StandardField.LOCATION, jsonEntry.optString("conference_location"));
9393
entry.setField(StandardField.DOI, jsonEntry.optString("doi"));
94+
entry.setField(StandardField.YEAR,jsonEntry.optString("publication_year"));
9495
entry.setField(StandardField.PAGES, jsonEntry.optString("start_page") + "--" + jsonEntry.optString("end_page"));
9596

9697
JSONObject keywordsContainer = jsonEntry.optJSONObject("index_terms");

0 commit comments

Comments
 (0)