mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
Misc
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user