Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
syrflover committed Jul 17, 2024
1 parent 0bce02b commit e7a6611
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,15 +327,17 @@ async fn run() {
})
.collect::<Vec<_>>();

println!();

let matched_items = collect_items(channels.iter_mut());

println!();

stream::iter(matched_items.into_iter())
.for_each_concurrent(100, |(base_directory, matched, item)| {
let transmission_url = transmission_url.clone();

async move {
println!();

let mut transmission = TransClient::new(transmission_url);

let link = item.link().unwrap_or_default();
Expand Down

0 comments on commit e7a6611

Please sign in to comment.