James Moger
2012-03-27 f5432e015d173f2665f7ca34735057e7b2b25d16
src/com/gitblit/utils/JsonUtils.java
@@ -295,7 +295,8 @@
            JsonDeserializationContext jsonDeserializationContext) {
         try {
            synchronized (dateFormat) {
               return dateFormat.parse(jsonElement.getAsString());
               Date date = dateFormat.parse(jsonElement.getAsString());
               return new Date((date.getTime() / 1000) * 1000);
            }
         } catch (ParseException e) {
            throw new JsonSyntaxException(jsonElement.getAsString(), e);