Skip to content

Commit

Permalink
[PlaytimeDB] Discard return value on CheckDB instead of waiting
Browse files Browse the repository at this point in the history
Fixes stuck at loading region :urunfast:
  • Loading branch information
bagusnl committed Nov 21, 2024
1 parent a0bad50 commit c829cb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public Playtime(IGameVersionCheck gameVersionManager, IGameSettings gameSettings


if (DbHandler.IsEnabled && gameSettings.AsIGameSettingsUniversal().SettingsCollapseMisc.IsSyncPlaytimeToDatabase)
CheckDb().GetAwaiter().GetResult();
_ = CheckDb();
}
#nullable disable

Expand Down

0 comments on commit c829cb3

Please sign in to comment.