Skip to content

Commit

Permalink
I SAID OOPS
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Apr 29, 2024
1 parent e85df0e commit 015825d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Refresher/UI/IntegratedPatchForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ private void DownloadLicenseFile(string ebootPath, GameItem game)
foreach (string licenseFile in this.Accessor.GetFilesInDirectory(Path.Combine(user, "exdata")))
{
//If the license file does not contain the content ID in its path, skip it
if (!licenseFile.Contains(contentId) || !licenseFile.Contains(game.TitleId))
if (!licenseFile.Contains(contentId) && !licenseFile.Contains(game.TitleId))
continue;

Program.Log($"Found compatible rap: {licenseFile}");
Expand Down

0 comments on commit 015825d

Please sign in to comment.