From 0e8b6627159cb5ae378d0dac3688b0585d3740d1 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Fri, 2 Jun 2023 11:20:42 +0300 Subject: [PATCH] Do not try to print machine auth hash --- DepotDownloader/Steam3Session.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index bc1aa0d7..206b3b56 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -752,7 +752,7 @@ namespace DepotDownloader 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();