1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 19:54:15 +08:00

Fix sentry logger init failing for edge cases (#37673)

Closes https://github.com/ppy/osu/issues/37650.
This commit is contained in:
Dean Herbert
2026-05-08 18:06:23 +09:00
committed by GitHub
Unverified
parent 4d88c143f9
commit c74c54d770
+1 -1
View File
@@ -58,7 +58,7 @@ namespace osu.Game.Utils
sentrySession = SentrySdk.Init(options =>
{
options.Dsn = "https://localhost";
options.Dsn = string.Empty;
options.AutoSessionTracking = true;
options.IsEnvironmentUser = false;
options.IsGlobalModeEnabled = true;