Copy parent status nsfw into retweeted_status

fix/no-nsfw-in-repeats
shpuld 7 years ago
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…
Cancel
Save