From 0f9a4c7c3109d8050ed8c5d71173b361297392cd Mon Sep 17 00:00:00 2001 From: Archi Date: Fri, 23 Feb 2024 14:19:09 +0100 Subject: [PATCH] Update Commands.cs --- ArchiSteamFarm/Steam/Interaction/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Steam/Interaction/Commands.cs b/ArchiSteamFarm/Steam/Interaction/Commands.cs index 2274e1f70..a2ffba16c 100644 --- a/ArchiSteamFarm/Steam/Interaction/Commands.cs +++ b/ArchiSteamFarm/Steam/Interaction/Commands.cs @@ -635,7 +635,7 @@ public sealed class Commands { (EResult result, IReadOnlyCollection? grantedApps, IReadOnlyCollection? grantedPackages) = await Bot.Actions.AddFreeLicenseApp(gameID).ConfigureAwait(false); if (((grantedApps == null) || (grantedApps.Count == 0)) && ((grantedPackages == null) || (grantedPackages.Count == 0))) { - response.AppendLine(FormatBotResponse(string.Format(CultureInfo.CurrentCulture, Strings.BotAddLicense, $"app/{gameID}", EResult.Timeout))); + response.AppendLine(FormatBotResponse(string.Format(CultureInfo.CurrentCulture, Strings.BotAddLicense, $"app/{gameID}", result))); break; }