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

Commit

Permalink
Diagnosing cache bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottswana committed Aug 29, 2015
1 parent 0b781d0 commit 7199297
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ARKUpdater/Classes/SteamKit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ protected virtual void Dispose(bool disposing)
Ready = false;

// Disconnect from Steam3
_User.LogOff();
if( _Client.IsConnected ) _Client.Disconnect();
}
}
Expand Down
3 changes: 2 additions & 1 deletion ARKUpdater/Interfaces/SteamInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public override int GetGameInformation(uint appid)
KeyValue buildid = node["buildid"];
if( buildid != KeyValue.Invalid )
{
_Parent.Log.ConsolePrint(LogLevel.Debug, "Retrieved Buildid from Steam3: {0}", buildid.Value);
returndata = Convert.ToInt32(buildid.Value);
}
}
Expand Down Expand Up @@ -171,4 +172,4 @@ public override int GetGameBuildVersion(string ApplicationPath)
throw new NotImplementedException();
}
}
}
}

0 comments on commit 7199297

Please sign in to comment.