Fix community_view clippy

This commit is contained in:
Dessalines 2020-08-16 11:27:50 -04:00
parent 0a27432b65
commit abadc79756
6 changed files with 8 additions and 7 deletions

2
ansible/VERSION vendored
View file

@ -1 +1 @@
v0.7.50
v0.7.51

View file

@ -12,7 +12,7 @@ services:
restart: always
lemmy:
image: dessalines/lemmy:v0.7.50
image: dessalines/lemmy:v0.7.51
ports:
- "127.0.0.1:8536:8536"
restart: always

View file

@ -1,5 +1,5 @@
#!/bin/sh
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker tag dessalines/lemmy:travis \
dessalines/lemmy:v0.7.50
docker push dessalines/lemmy:v0.7.50
dessalines/lemmy:v0.7.51
docker push dessalines/lemmy:v0.7.51

View file

@ -245,7 +245,8 @@ impl<'a> CommunityQueryBuilder<'a> {
.filter(user_id.is_null())
}
},
SortType::Hot | _ => {
// Covers all other sorts, including hot
_ => {
query = query
.order_by(hot_rank.desc())
.then_order_by(number_of_subscribers.desc())

View file

@ -1 +1 @@
pub const VERSION: &str = "v0.7.50";
pub const VERSION: &str = "v0.7.51";

2
ui/package.json vendored
View file

@ -73,7 +73,7 @@
"engineStrict": true,
"husky": {
"hooks": {
"pre-commit": "cargo clippy --manifest-path ../server/Cargo.toml --all-targets --workspace -- -D warnings && lint-staged"
"pre-commit": "cargo +nightly clippy --manifest-path ../server/Cargo.toml --all-targets --workspace -- -D warnings && lint-staged"
}
},
"lint-staged": {