We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea8121 commit 55ff5f8Copy full SHA for 55ff5f8
src/main.rs
@@ -135,7 +135,7 @@ fn get_installed_mods_sync(mods_folder_path: String) -> Vec<LocalMod> {
135
let entry = entry.unwrap();
136
let res: anyhow::Result<_> = try {
137
let yaml = if entry.file_type().unwrap().is_dir() {
138
- let cache_path = entry.path().read_dir()?.find(|v| {
+ let cache_path = entry.path().read_dir().unwrap().find(|v| {
139
v.as_ref()
140
.map(|v| {
141
let name = v.file_name().to_string_lossy().to_string().to_lowercase();
0 commit comments