diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index ae1b4d6..7f3ba84 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -94,7 +94,7 @@ async fn main() { let bind_address = env::var("BIND_ADDRESS").expect("BIND_ADDRESS"); info!("Starting server on {}", bind_address); - let app_url = env::var("APP_URL").unwrap().expect("APP_URL"); + let app_url = env::var("APP_URL").expect("APP_URL"); #[cfg(debug_assertions)] warn!("Running a debug build."); |