forked from AkkomaGang/akkoma-fe
Fix repeat nsfw hiding.
This commit is contained in:
parent
b6eb1b1d98
commit
39026f8bc3
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ export const prepareStatus = (status) => {
|
|||
if (status.nsfw === undefined) {
|
||||
status.nsfw = isNsfw(status)
|
||||
if (status.retweeted_status) {
|
||||
status.retweeted_status.nsfw = status.nsfw
|
||||
status.nsfw = status.retweeted_status.nsfw
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue