This commit is contained in:
JustArchi
2022-08-07 00:35:54 +02:00
parent 7c1dde5c72
commit 270a71e83c
2 changed files with 3 additions and 3 deletions

View File

@@ -1886,7 +1886,7 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
HashSet<uint> result = new();
foreach (string? badgeUri in linkElements.Select(static htmlNode => htmlNode.Value)) {
foreach (string badgeUri in linkElements.Select(static htmlNode => htmlNode.Value)) {
if (string.IsNullOrEmpty(badgeUri)) {
ArchiLogger.LogNullError(badgeUri);

View File

@@ -1822,7 +1822,7 @@ public sealed class ArchiWebHandler : IDisposable {
HashSet<ulong> results = new();
foreach (string? giftCardIDText in htmlNodes.Select(static node => node.Value)) {
foreach (string giftCardIDText in htmlNodes.Select(static htmlNode => htmlNode.Value)) {
if (string.IsNullOrEmpty(giftCardIDText)) {
Bot.ArchiLogger.LogNullError(giftCardIDText);
@@ -1869,7 +1869,7 @@ public sealed class ArchiWebHandler : IDisposable {
HashSet<ulong> result = new();
foreach (string? miniProfile in htmlNodes.Select(static htmlNode => htmlNode.Value)) {
foreach (string miniProfile in htmlNodes.Select(static htmlNode => htmlNode.Value)) {
if (string.IsNullOrEmpty(miniProfile)) {
Bot.ArchiLogger.LogNullError(miniProfile);