We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd76b8 commit 7cbf564Copy full SHA for 7cbf564
src/UniGetUI.PackageEngine.PackageManagerClasses/Packages/Package.cs
@@ -102,7 +102,7 @@ public Package(
102
{
103
"Winget" => Source.Name switch
104
105
- "Steam" => id.ToLower().Split("\\")[^1].Replace("steam app ", "steam:").Trim(),
+ "Steam" => id.ToLower().Split("\\")[^1].Replace("steam app ", "steam-").Trim(),
106
"Local PC" => id.ToLower().Split("\\")[^1],
107
"Microsoft Store" => id.IndexOf('_') < id.IndexOf('.') ? // If the first underscore is before the period, this ID has no publisher
108
string.Join('_', id.ToLower().Split("\\")[1].Split("_")[0..^4]) : // no publisher: remove `MSIX\`, then the standard ending _version_arch__{random id}
0 commit comments