diff --git a/ffplayout/src/main.rs b/ffplayout/src/main.rs index 1cec61ec..20db55e3 100644 --- a/ffplayout/src/main.rs +++ b/ffplayout/src/main.rs @@ -81,12 +81,6 @@ async fn main() -> std::io::Result<()> { .await .map_err(|e| io::Error::new(io::ErrorKind::Other, e.to_string()))?; - if ARGS.dump_advanced.is_none() && ARGS.dump_config.is_none() { - if let Err(e) = handles::db_migrate(&pool).await { - panic!("{e}"); - }; - } - if let Err(c) = run_args(&pool).await { exit(c); }