diff --git a/app/selectors/post_list.js b/app/selectors/post_list.js index 37c8a672c..07bb43d40 100644 --- a/app/selectors/post_list.js +++ b/app/selectors/post_list.js @@ -55,7 +55,7 @@ export function makePreparePostIdsForPostList() { const postDate = new Date(post.create_at); if (!lastDate || lastDate.toDateString() !== postDate.toDateString()) { - out.push(DATE_LINE + postDate.toDateString()); + out.push(DATE_LINE + postDate.toString()); lastDate = postDate; }