14 lines
398 B
Diff
14 lines
398 B
Diff
diff --git a/src/utils/steam_locator.rs b/src/utils/steam_locator.rs
|
|
index 556127b..8199ef5 100644
|
|
--- a/src/utils/steam_locator.rs
|
|
+++ b/src/utils/steam_locator.rs
|
|
@@ -171,7 +171,7 @@ impl SteamLocator {
|
|
|
|
potential_dirs
|
|
.into_iter()
|
|
- .filter(|path| path.exists() && !path.is_symlink())
|
|
+ .filter(|path| path.exists())
|
|
.collect()
|
|
}
|
|
|