You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In org.springframework.social.google.api.query.impl.QueryBuilderImpl the dateFormatter SimpleDateFormat is incorrect.
It specifies the hours as "hh" which is the 12 hour format, so midnight is formatted as "12".
Changing it to "HH" corrects it, so midnight appears as "T00:00:00.000Z"
The text was updated successfully, but these errors were encountered:
martxw
added a commit
to martxw/spring-social-google
that referenced
this issue
Nov 9, 2014
Moved encode() up a level to QueryBuilderImpl so its available to all builders.
Fix for issue spring-social#62 - wrong time format in QueryBuilderImpl.
martxw
added a commit
to martxw/spring-social-google
that referenced
this issue
Dec 1, 2014
Implemented package org.springframework.social.google.api.calendar.impl and org.springframework.social.google.api.calendar.impl, and autotests.
Also see spring-social-google-example updates.
Moved encode() up a level to QueryBuilderImpl so its available to all builders.
Fix for issue spring-social#62 - wrong time format in QueryBuilderImpl.
In org.springframework.social.google.api.query.impl.QueryBuilderImpl the dateFormatter SimpleDateFormat is incorrect.
It specifies the hours as "hh" which is the 12 hour format, so midnight is formatted as "12".
Changing it to "HH" corrects it, so midnight appears as "T00:00:00.000Z"
The text was updated successfully, but these errors were encountered: