We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e73c6d commit 03191f7Copy full SHA for 03191f7
1 file changed
crates/server/src/snippets/mod.rs
@@ -39,7 +39,7 @@ async fn load(config: &config::SnippetConfig) -> HashMap<ClipEntry, Option<PathB
39
clipcat_base::utils::fs::read_dir_recursively_async(&path)
40
.await
41
.into_iter()
42
- .map(|file| (async move { (tokio::fs::read(&file).await.ok(), file) })),
+ .map(|file| async move { (tokio::fs::read(&file).await.ok(), file) }),
43
)
44
45
0 commit comments