mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-17 00:43:02 +01: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