Update lib.rs

pull/3420/head
dullbananas 2023-07-04 09:33:41 -07:00 committed by GitHub
parent d9e0269774
commit 2d322dcd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -55,15 +55,15 @@ pub async fn start_lemmy_server() -> Result<(), LemmyError> {
let pool = build_db_pool(&settings).await?;
// Run the Code-required migrations
run_advanced_migrations(get_conn(pool).await?, &settings).await?;
run_advanced_migrations(get_conn(&pool).await?, &settings).await?;
// Initialize the secrets
let secret = Secret::init(get_conn(pool).await?)
let secret = Secret::init(get_conn(&pool).await?)
.await
.expect("Couldn't initialize secrets.");
// Make sure the local site is set up.
let site_view = SiteView::read_local(get_conn(pool).await?)
let site_view = SiteView::read_local(get_conn(&pool).await?)
.await
.expect("local site not set up");
let local_site = site_view.local_site;