summaryrefslogtreecommitdiff
path: root/src/api/endpoints/posts/show.js
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-02-14 13:59:26 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-02-14 13:59:26 +0900
commit2b4c5ecff4e4457c49a14d3ed0095cc9f0e1f758 (patch)
tree216793638b28dd1de209561ac79544e4a27f407a /src/api/endpoints/posts/show.js
parent#133 (diff)
downloadmisskey-2b4c5ecff4e4457c49a14d3ed0095cc9f0e1f758.tar.gz
misskey-2b4c5ecff4e4457c49a14d3ed0095cc9f0e1f758.tar.bz2
misskey-2b4c5ecff4e4457c49a14d3ed0095cc9f0e1f758.zip
Implement the poll feature
Closes #164
Diffstat (limited to 'src/api/endpoints/posts/show.js')
-rw-r--r--src/api/endpoints/posts/show.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/api/endpoints/posts/show.js b/src/api/endpoints/posts/show.js
index f399d86c8a..1b9a747a8d 100644
--- a/src/api/endpoints/posts/show.js
+++ b/src/api/endpoints/posts/show.js
@@ -39,7 +39,6 @@ module.exports = (params, user) =>
// Serialize
res(await serialize(post, user, {
- serializeReplyTo: true,
- includeIsLiked: true
+ detail: true
}));
});