mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
Misc
This commit is contained in:
@@ -3661,7 +3661,7 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
|
||||
// If user omitted the name or intentionally provided the same name as key, replace it with the Steam result
|
||||
name ??= key;
|
||||
|
||||
if (name.Equals(key, StringComparison.OrdinalIgnoreCase) && (items?.Count > 0)) {
|
||||
if (((name.Length == 0) || name.Equals(key, StringComparison.OrdinalIgnoreCase)) && (items?.Count > 0)) {
|
||||
name = string.Join(", ", items.Values);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user