mirror of https://github.com/LemmyNet/lemmy.git
Fix bug when changing main community name.
parent
01738fb554
commit
7c3ac0c85d
|
@ -170,7 +170,7 @@ impl Perform<LoginResponse> for Oper<Register> {
|
|||
};
|
||||
|
||||
// Create the main community if it doesn't exist
|
||||
let main_community: Community = match Community::read_from_name(&conn, "main".to_string()) {
|
||||
let main_community: Community = match Community::read(&conn, 2) {
|
||||
Ok(c) => c,
|
||||
Err(_e) => {
|
||||
let community_form = CommunityForm {
|
||||
|
|
Loading…
Reference in New Issue