Skip to content

Commit

Permalink
Do not try to print machine auth hash
Browse files Browse the repository at this point in the history
  • Loading branch information
xPaw committed Jun 2, 2023
1 parent 9aaed77 commit 0e8b662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DepotDownloader/Steam3Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ private void LicenseListCallback(SteamApps.LicenseListCallback licenseList)
private void UpdateMachineAuthCallback(SteamUser.UpdateMachineAuthCallback machineAuth)
{
var hash = Util.SHAHash(machineAuth.Data);
Console.WriteLine("Got Machine Auth: {0} {1} {2} {3}", machineAuth.FileName, machineAuth.Offset, machineAuth.BytesToWrite, machineAuth.Data.Length, hash);
Console.WriteLine("Got Machine Auth: {0} {1} {2} {3}", machineAuth.FileName, machineAuth.Offset, machineAuth.BytesToWrite, machineAuth.Data.Length);

AccountSettingsStore.Instance.SentryData[logonDetails.Username] = machineAuth.Data;
AccountSettingsStore.Save();
Expand Down

0 comments on commit 0e8b662

Please sign in to comment.