[Client] Fix bug

This commit is contained in:
syuilo 2017-02-19 12:27:43 +09:00
parent f1b5625647
commit 05d8078a18

View file

@ -14,8 +14,7 @@ const summarize = post => {
// 返信のとき
if (post.reply_to_id) {
if (post.reply_to) {
replySummary = summarize(post.reply_to);
summary += ` RE: ${replySummary}`;
summary += ` RE: ${summarize(post.reply_to)}`;
} else {
summary += ' RE: ...';
}
@ -24,8 +23,7 @@ const summarize = post => {
// Repostのとき
if (post.repost_id) {
if (post.repost) {
repostSummary = summarize(post.repost);
summary += ` RP: ${repostSummary}`;
summary += ` RP: ${summarize(post.repost)}`;
} else {
summary += ' RP: ...';
}