Fix issue with time parsing
This commit is contained in:
parent
0a39e64f9a
commit
17b72cde60
|
@ -360,7 +360,7 @@ public class WordBuilder {
|
||||||
try {
|
try {
|
||||||
instant = Instant.parse((String) field.getValue());
|
instant = Instant.parse((String) field.getValue());
|
||||||
} catch (DateTimeParseException ex) {
|
} catch (DateTimeParseException ex) {
|
||||||
instant = (Instant) DateTimeFormatter.ofPattern("yyyy-MM-dd").parse((String)field.getValue());
|
instant = Instant.from(DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.systemDefault()).parse((String)field.getValue()));
|
||||||
}
|
}
|
||||||
return field.getValue() != null ? DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.systemDefault()).format(instant) : "";
|
return field.getValue() != null ? DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.systemDefault()).format(instant) : "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue