Fix repeat nsfw hiding.

This commit is contained in:
Roger Braun 2018-04-23 19:07:47 +02:00
parent b6eb1b1d98
commit 39026f8bc3

View file

@ -45,7 +45,7 @@ export const prepareStatus = (status) => {
if (status.nsfw === undefined) { if (status.nsfw === undefined) {
status.nsfw = isNsfw(status) status.nsfw = isNsfw(status)
if (status.retweeted_status) { if (status.retweeted_status) {
status.retweeted_status.nsfw = status.nsfw status.nsfw = status.retweeted_status.nsfw
} }
} }