From f0ed82b0deaf817ab4e65a3e840704ee1f41b306 Mon Sep 17 00:00:00 2001 From: rr- Date: Sun, 21 Aug 2016 20:11:14 +0200 Subject: [PATCH] client/models: fix post list missing comment count --- client/js/models/post.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/js/models/post.js b/client/js/models/post.js index c3bc92e..9c1256e 100644 --- a/client/js/models/post.js +++ b/client/js/models/post.js @@ -35,6 +35,7 @@ class Post extends events.EventTarget { get relations() { return this._relations; } get score() { return this._score; } + get commentCount() { return this._commentCount; } get favoriteCount() { return this._favoriteCount; } get ownFavorite() { return this._ownFavorite; } get ownScore() { return this._ownScore; } @@ -257,6 +258,7 @@ class Post extends events.EventTarget { _relations: [...response.relations || []], _score: response.score, + _commentCount: response.commentCount, _favoriteCount: response.favoriteCount, _ownScore: response.ownScore, _ownFavorite: response.ownFavorite,