Skip to content
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
Reset wait handle when steam connection error occours.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottswana committed Sep 22, 2015
1 parent 364c486 commit 4d6c533
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ARKUpdater/Classes/SteamKit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,11 @@ private void LogOnCallback(SteamUser.LoggedOnCallback loggedOn)
{
if( loggedOn.Result != EResult.OK )
{
_Parent.Log.ConsolePrint(LogLevel.Debug, "Unable to connect to Steam3. {0}", loggedOn.Result);
_Parent.Log.ConsolePrint(LogLevel.Error, "Unable to connect to Steam3. Error: {0}", loggedOn.Result);
_ThreadRunning = false;

Failed = true;
_ResetEvent.Set();
return;
}

Expand Down

0 comments on commit 4d6c533

Please sign in to comment.