Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
Don't force reconnect if we're somehow already connected during Start()
  • Loading branch information
JustArchi committed Oct 12, 2024
1 parent b0254ae commit b0e3694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArchiSteamFarm/Steam/Bot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1970,7 +1970,7 @@ internal async Task Start() {
CancellationToken token = CallbacksAborted.Token;

Utilities.InBackground(() => HandleCallbacks(token), true);
Utilities.InBackground(Reconnect);
Utilities.InBackground(Connect);
} finally {
ConnectionSemaphore.Release();
}
Expand Down

0 comments on commit b0e3694

Please sign in to comment.