mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-12 19:44:53 +00:00
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) {
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue