fix(katana): aaa

This commit is contained in:
tretrauit 2024-01-11 22:19:08 +07:00
parent cce8dedccf
commit 6c3c60b141

View File

@ -501,7 +501,7 @@ pub async fn analyze_drop_message(message: &Message) -> Result<Vec<DroppedCard>,
Ok((i, execute_analyze_drop(card_img, i).await))
});
}
let mut handles: Vec<task::JoinHandle<Result<(u32, Result<DroppedCard>), String>>> = Vec::new();
let mut handles: Vec<task::JoinHandle<Result<(u32, Result<DroppedCard, String>), String>>> = Vec::new();
for job in jobs {
let handle = task::spawn(job);
handles.push(handle);