Skip to content

Commit

Permalink
Merge pull request #831 from kermitt2/bugfix/fix-wrongly-assigned-day…
Browse files Browse the repository at this point in the history
…-consolidation

fix deserialised consolidation day
  • Loading branch information
kermitt2 committed Sep 8, 2021
2 parents 332c1b3 + 896cd75 commit 98d9ed9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ protected BiblioItem deserializeOneItem(JsonNode item) {
}

if (day != null) {
date.setDayString(month);
date.setDayString(day);
int dayInt = -1;
try {
dayInt = Integer.parseInt(day);
Expand Down

0 comments on commit 98d9ed9

Please sign in to comment.