diff --git a/server/src/api/user.rs b/server/src/api/user.rs index 2a6c214a7..672eca562 100644 --- a/server/src/api/user.rs +++ b/server/src/api/user.rs @@ -170,7 +170,7 @@ impl Perform for Oper { }; // 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 {