Fix webhook post aggregation and pending/failed post aggregation

Этот коммит содержится в:
JoramWilander
2015-11-30 14:15:28 -05:00
родитель c919bd9e52
Коммит 0b3be654a2
2 изменённых файлов: 40 добавлений и 9 удалений

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

@@ -854,7 +854,7 @@ export function isMobile() {
export function isComment(post) {
if ('root_id' in post) {
return post.root_id !== '';
return post.root_id !== '' && post.root_id != null;
}
return false;
}