Skip to content

Commit

Permalink
Update Steam detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Klocman committed May 20, 2023
1 parent d1f168a commit 3fcdaff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/UninstallTools/Factory/SteamFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,14 @@ public IList<ApplicationUninstallerEntry> GetUninstallerEntries(

results.Add(new ApplicationUninstallerEntry
{
AboutUrl = @"http://store.steampowered.com/about/",
AboutUrl = @"http://steampowered.com/",
InstallLocation = steamLocation,
DisplayIcon = Path.Combine(steamLocation, "Steam.exe"),
DisplayName = "Steam",
UninstallerKind = UninstallerType.Nsis,
UninstallString = Path.Combine(steamLocation, "uninstall.exe"),
IsOrphaned = true,
IsOrphaned = false,
RatingId = "Steam",
IsValid = File.Exists(Path.Combine(steamLocation, "uninstall.exe")),
InstallDate = Directory.GetCreationTime(steamLocation),
Publisher = "Valve Corporation",
Expand Down

0 comments on commit 3fcdaff

Please sign in to comment.