We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df0b50 commit 9bbb89eCopy full SHA for 9bbb89e
source/Metadata/VNDBNexus/VNDBNexusMetadataProvider.cs
@@ -184,8 +184,8 @@ private void SearchVisualNovel()
184
185
var matchingVisualNovel = searchResults.FirstOrDefault(
186
x => x.Title.Satinize() == normalizedGameName ||
187
- x.Aliases?.Any(x => x.Satinize() == normalizedGameName) == true ||
188
- 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);
189
if (matchingVisualNovel != null)
190
{
191
_matchedVisualNovel = matchingVisualNovel;
0 commit comments