Switch to using create_at for latest post

Этот коммит содержится в:
JoramWilander
2016-02-11 13:17:59 -05:00
родитель c5b2e8832c
Коммит 3a1ec7dbd7

Просмотреть файл

@@ -532,7 +532,7 @@ export function getPosts(id) {
let latestPostTime = 0;
if (latestPost != null && latestPost.update_at != null) {
latestPostTime = latestPost.update_at;
latestPostTime = latestPost.create_at;
}
callTracker['getPosts_' + channelId] = utils.getTimestamp();