Skip to content

Commit

Permalink
Merge pull request #157 from rankynbass/fix-update-zero-length-array
Browse files Browse the repository at this point in the history
  • Loading branch information
Blooym authored Jun 17, 2024
2 parents 0a224a8 + e8957d9 commit d8e524c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XIVLauncher.Core/Components/MainPage/MainPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ private async Task<bool> HandleBootCheck()
return false;
}

if (bootPatches == null)
if (bootPatches.Length == 0)
return true;

return await TryHandlePatchAsync(Repository.Boot, bootPatches, "").ConfigureAwait(false);
Expand Down

0 comments on commit d8e524c

Please sign in to comment.