Removed Z at the end of dateTime to make it compatible with VIVO

This commit is contained in:
Georgy Litvinov 2021-02-21 21:45:56 +01:00
parent 988df26e7f
commit de48a6b09d

View file

@ -205,7 +205,7 @@ public class DocumentStructure {
private void addModificationTime(Resource mainResource) {
Property property = m.createProperty(TS + MODIFICATION_TIME);
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
sd.setTimeZone(TimeZone.getTimeZone("GMT"));
String todayAsString = sd.format(currentTime);
mainResource.addProperty( property, todayAsString);