Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/lens-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ pub fn start_lens_server(config: Value) -> Result<ServerClient> {
if !name.starts_with("Proton ") {
continue;
}
// Do not confuse anti-cheat runtimes with Proton
if name.contains("Runtime") {
continue;
}
candidates.push((name.to_owned(), file_name))
}
// Try to find latest version by semverish comparison
Expand Down