Copy parent status nsfw into retweeted_status
This commit is contained in:
parent
5bc7ecdb3b
commit
573f01650b
|
@ -44,6 +44,9 @@ export const prepareStatus = (status) => {
|
|||
// Parse nsfw tags
|
||||
if (status.nsfw === undefined) {
|
||||
status.nsfw = isNsfw(status)
|
||||
if (status.retweeted_status) {
|
||||
status.retweeted_status.nsfw = status.nsfw
|
||||
}
|
||||
}
|
||||
|
||||
// Set deleted flag
|
||||
|
|
Loading…
Reference in New Issue