Skip to content

Commit

Permalink
QA (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-nyan committed Jun 30, 2024
1 parent 324aebe commit c39f197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CollapseLauncher/Classes/Helper/Metadata/PresetConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public bool TryCheckGameLocationHYP()
string[] subKeyKey = subKey.GetSubKeyNames();
if (subKeyKey.Length == 0) continue;

string? gameKeyName = subKeyKey?.FirstOrDefault(x => x.Equals(LauncherBizName, StringComparison.OrdinalIgnoreCase));
string? gameKeyName = subKeyKey.FirstOrDefault(x => x.Equals(LauncherBizName, StringComparison.OrdinalIgnoreCase));
if (string.IsNullOrEmpty(gameKeyName)) continue;

RegistryKey? gameKey = subKey.OpenSubKey(gameKeyName);
Expand Down

0 comments on commit c39f197

Please sign in to comment.