chore(deps): update rust crate steamlocate to v2.0.1 #217

Merged
lucas merged 2 commits from renovate/steamlocate-2.x-lockfile into master 2025-04-22 00:01:31 +02:00
Showing only changes of commit 83de50409b - Show all commits

View file

@ -87,7 +87,7 @@ pub fn collect_game_info() -> Result<Option<GameInfo>> {
.find_app(STEAMAPP_ID)
.wrap_err("Failed to look up game by Steam app ID")?;
let Some((app, _)) = found else {
let Some((app, library)) = found else {
return Ok(None);
};
@ -96,7 +96,7 @@ pub fn collect_game_info() -> Result<Option<GameInfo>> {
.ok_or_eyre("Missing field 'last_updated'")?;
Ok(Some(GameInfo {
path: app.install_dir.into(),
path: library.path().join(app.install_dir),
last_updated: last_updated.into(),
}))
}