diff options
Diffstat (limited to 'bucky/app/bucky.js')
| -rw-r--r-- | bucky/app/bucky.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bucky/app/bucky.js b/bucky/app/bucky.js index 9e0d49a..d494ce9 100644 --- a/bucky/app/bucky.js +++ b/bucky/app/bucky.js @@ -80,7 +80,7 @@ var bucky = (module.exports = { db.getHootstreamThreads({ files, comments }).then((threads) => { res.files = files; res.comments = comments.map((comment) => { - comment.set("comment", comment.get("comment").toString()); + comment.comment = comment.comment.toString(); return comment; }); res.threads = threads; |
