X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fapi_crud%2Fsrc%2Fcommunity%2Fcreate.rs;h=a7582d2ec5bbbf138512bd9850f5b8fd2ece64d1;hb=3c111b3062e69b19e68a9b537c23a7e61ae34e94;hp=451e9bfa0cbfad12b628331df20077359df44a27;hpb=d4ee171b085d8c7168b3c21b23177377360ff92f;p=lemmy.git diff --git a/crates/api_crud/src/community/create.rs b/crates/api_crud/src/community/create.rs index 451e9bfa..a7582d2e 100644 --- a/crates/api_crud/src/community/create.rs +++ b/crates/api_crud/src/community/create.rs @@ -123,7 +123,7 @@ impl PerformCrud for CreateCommunity { let community_follower_form = CommunityFollowerForm { community_id: inserted_community.id, person_id: local_user_view.person.id, - pending: Some(false), + pending: false, }; let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);