forked from AkkomaGang/akkoma-fe
Make created_at_parsed reactive.
This commit is contained in:
parent
7980558461
commit
88d960b9f6
1 changed files with 3 additions and 0 deletions
|
@ -55,6 +55,9 @@ const addStatusesToTimeline = (addedStatuses, showImmediately, { statuses, visib
|
|||
// Add some html and nsfw to the statuses.
|
||||
each(addedStatuses, (status) => {
|
||||
const statusoid = status.retweeted_status || status
|
||||
|
||||
statusoid.created_at_parsed = statusoid.created_at
|
||||
|
||||
if (statusoid.parsedText === undefined) {
|
||||
// statusoid.parsedText = statusParserService.parse(statusoid)
|
||||
statusoid.parsedText = statusoid.text
|
||||
|
|
Loading…
Reference in a new issue