Merge pull request #826 from clienthax/yuri

Resolve problems specific to YuriNator557.
This commit is contained in:
clienthax 2021-11-21 13:12:22 +00:00 committed by GitHub
commit d5238bfcda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ namespace IrdLibraryClient
List<string[]> table = doc.DocumentNode
.Descendants("tr")
.Skip(1)
.Where(tr => tr.Elements("td").Count() > 1 && tr.Elements("td").First().InnerText == query)
.Where(tr => tr.Elements("td").Count() > 1 && tr.Elements("td").First().InnerText == query.ToUpper())
.Select(tr => tr.Elements("td").Select(td => td.InnerText.Trim()).ToArray())
.ToList();