From e011ca752bd4befc73e33c72e59e4e6492ac1aa7 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 23 Nov 2025 15:25:42 +0800 Subject: Fix type annotation in file tracking collection --- src/bin/jv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/jv.rs') diff --git a/src/bin/jv.rs b/src/bin/jv.rs index 717ad34..e71b6d6 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -2072,7 +2072,7 @@ async fn jv_track(args: TrackFileArgs) { files .iter() .map(|f| current_dir().unwrap().join(f)) - .collect() + .collect::>() } else { println!("{}", md(t!("jv.track"))); return; -- cgit