-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Medium
-
Affects Version/s: 1.2.1
-
Component/s: Core - Content REST APIs
tries incorrectly to return an SQL date.
bug is in RemoteBlogEntrySummary.java line 20
publishDate = page.getCreationDate();
should be ( see RemotePage line 32 )
publishDate = new Date(page.getCreationDate().getTime());
appreciate a quick fix as the blog api can not be used at the moment..