diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-28 16:39:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-28 16:39:14 +0900 |
| commit | 3d5cdb8d2d60932caf1d29b0581c7d6243e06e37 (patch) | |
| tree | 9c29d1062b08378d4c4cafe5976793616d45bc01 /src/common/get-post-summary.ts | |
| parent | wip (diff) | |
| download | misskey-3d5cdb8d2d60932caf1d29b0581c7d6243e06e37.tar.gz misskey-3d5cdb8d2d60932caf1d29b0581c7d6243e06e37.tar.bz2 misskey-3d5cdb8d2d60932caf1d29b0581c7d6243e06e37.zip | |
wip
Diffstat (limited to 'src/common/get-post-summary.ts')
| -rw-r--r-- | src/common/get-post-summary.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/get-post-summary.ts b/src/common/get-post-summary.ts index 6e8f65708e..8d0033064f 100644 --- a/src/common/get-post-summary.ts +++ b/src/common/get-post-summary.ts @@ -22,7 +22,7 @@ const summarize = (post: any): string => { } // 返信のとき - if (post.reply_id) { + if (post.replyId) { if (post.reply) { summary += ` RE: ${summarize(post.reply)}`; } else { @@ -31,7 +31,7 @@ const summarize = (post: any): string => { } // Repostのとき - if (post.repost_id) { + if (post.repostId) { if (post.repost) { summary += ` RP: ${summarize(post.repost)}`; } else { |