Skip to content

Commit 9bbb89e

Browse files
committed
VNDB Nexus: Rename linq variables
1 parent 6df0b50 commit 9bbb89e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/Metadata/VNDBNexus/VNDBNexusMetadataProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ private void SearchVisualNovel()
184184

185185
var matchingVisualNovel = searchResults.FirstOrDefault(
186186
x => x.Title.Satinize() == normalizedGameName ||
187-
x.Aliases?.Any(x => x.Satinize() == normalizedGameName) == true ||
188-
x.Titles?.Any(x => x.Title.Satinize() == normalizedGameName) == true);
187+
x.Aliases?.Any(alias => alias.Satinize() == normalizedGameName) == true ||
188+
x.Titles?.Any(altTitle => altTitle.Title.Satinize() == normalizedGameName) == true);
189189
if (matchingVisualNovel != null)
190190
{
191191
_matchedVisualNovel = matchingVisualNovel;

0 commit comments

Comments
 (0)