From 1a3546330a5b026b96287db1ad4032f7965d9ed5 Mon Sep 17 00:00:00 2001 From: bcssov Date: Thu, 4 Aug 2022 15:38:05 +0200 Subject: [PATCH] Fix small issue while waiting for steam to boot up --- src/IronyModManager.IO/Platforms/SteamHandler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/IronyModManager.IO/Platforms/SteamHandler.cs b/src/IronyModManager.IO/Platforms/SteamHandler.cs index a7462b229..57a6809b1 100644 --- a/src/IronyModManager.IO/Platforms/SteamHandler.cs +++ b/src/IronyModManager.IO/Platforms/SteamHandler.cs @@ -4,7 +4,7 @@ // Created : 07-11-2022 // // Last Modified By : Mario -// Last Modified On : 07-11-2022 +// Last Modified On : 08-04-2022 // *********************************************************************** // // Mario @@ -147,6 +147,7 @@ public async Task InitAsync(long appId) break; } result = await InitializeAndValidateAsync(); + await Task.Delay(Delay); initCheckAttempts++; } return result;