diff options
| author | Fuwn <[email protected]> | 2025-02-21 03:59:23 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-21 03:59:23 -0800 |
| commit | 75773aacf93cd6b3ae27cef7f7ba269839c1d04d (patch) | |
| tree | 6d8702b4bca97559ec0968bd688409038b4a158d | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-75773aacf93cd6b3ae27cef7f7ba269839c1d04d.tar.xz sora-testing-75773aacf93cd6b3ae27cef7f7ba269839c1d04d.zip | |
feat: Development commit
| -rw-r--r-- | Sora/Views/Post/PostView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Post/PostView.swift b/Sora/Views/Post/PostView.swift index 2765cd5..7635641 100644 --- a/Sora/Views/Post/PostView.swift +++ b/Sora/Views/Post/PostView.swift @@ -29,7 +29,7 @@ struct PostView: View { } } } - .blur(radius: settings.blurNSFWThumbnails ? post.rating != "s" ? 10 : 0 : 0) + .blur(radius: settings.blurNSFWThumbnails ? (post.rating != "s" && post.rating != "q") ? 10 : 0 : 0) .animation(.default, value: settings.blurNSFWThumbnails) } placeholder: { ProgressView() |