From 015825dd599946e092fe89690ce8cd6658ec5908 Mon Sep 17 00:00:00 2001 From: jvyden Date: Sun, 28 Apr 2024 22:32:30 -0400 Subject: [PATCH] I SAID OOPS --- Refresher/UI/IntegratedPatchForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Refresher/UI/IntegratedPatchForm.cs b/Refresher/UI/IntegratedPatchForm.cs index cd3508b..c85f04d 100644 --- a/Refresher/UI/IntegratedPatchForm.cs +++ b/Refresher/UI/IntegratedPatchForm.cs @@ -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}");