We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd96174 commit 3872aadCopy full SHA for 3872aad
ArchiSteamFarm/Steam/Cards/CardsFarmer.cs
@@ -1387,7 +1387,7 @@ private async Task<bool> IsPlayableGame(Game game) {
1387
}
1388
1389
private static async Task<(bool Success, FrozenSet<uint>? Result)> ResolveMarketableAppIDs(CancellationToken cancellationToken) {
1390
- Bot? bot = Bot.Bots?.Values.FirstOrDefault(static targetBot => targetBot.IsConnectedAndLoggedOn);
+ Bot? bot = Bot.Bots?.Values.FirstOrDefault(static targetBot => targetBot.IsConnectedAndLoggedOn && !string.IsNullOrEmpty(targetBot.AccessToken));
1391
1392
if (bot == null) {
1393
return (false, null);
0 commit comments