fix: display has to be sequential after all

This commit is contained in:
2025-03-14 15:18:38 +00:00
parent 62edcdae08
commit b525e74467
6 changed files with 45 additions and 28 deletions

View File

@ -24,7 +24,7 @@ pub async fn startline(app: AppHandle) -> Result<(), String> {
}
if let Some(p) = &mut appd.profile {
log::debug!("{}", hash);
p.line_up(app.clone(), hash).await
p.line_up(hash, app.clone()).await
.map_err(|e| format!("Lineup failed:\n{}", e))?;
p.start(app.clone()).await
.map_err(|e| format!("Startup failed:\n{}", e))?;