mirror of https://github.com/LemmyNet/lemmy.git
parent
7008848f9c
commit
b95bbe2fae
|
@ -359,7 +359,7 @@ impl<'a> PostQueryBuilder<'a> {
|
|||
query = query.filter(post::creator_id.eq(creator_id));
|
||||
}
|
||||
|
||||
if !self.show_nsfw.unwrap_or(true) {
|
||||
if !self.show_nsfw.unwrap_or(false) {
|
||||
query = query
|
||||
.filter(post::nsfw.eq(false))
|
||||
.filter(community::nsfw.eq(false));
|
||||
|
|
|
@ -198,7 +198,7 @@ impl<'a> CommunityQueryBuilder<'a> {
|
|||
}
|
||||
};
|
||||
|
||||
if !self.show_nsfw.unwrap_or(true) {
|
||||
if !self.show_nsfw.unwrap_or(false) {
|
||||
query = query.filter(community::nsfw.eq(false));
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue