Skip to content

Commit

Permalink
VNDB Nexus: Rename linq variables
Browse files Browse the repository at this point in the history
  • Loading branch information
darklinkpower committed Jun 4, 2024
1 parent 6df0b50 commit 9bbb89e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Metadata/VNDBNexus/VNDBNexusMetadataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ private void SearchVisualNovel()

var matchingVisualNovel = searchResults.FirstOrDefault(
x => x.Title.Satinize() == normalizedGameName ||
x.Aliases?.Any(x => x.Satinize() == normalizedGameName) == true ||
x.Titles?.Any(x => x.Title.Satinize() == normalizedGameName) == true);
x.Aliases?.Any(alias => alias.Satinize() == normalizedGameName) == true ||
x.Titles?.Any(altTitle => altTitle.Title.Satinize() == normalizedGameName) == true);
if (matchingVisualNovel != null)
{
_matchedVisualNovel = matchingVisualNovel;
Expand Down

0 comments on commit 9bbb89e

Please sign in to comment.