From c74c54d7706ae823d2ca33203ba1eee15a1002b5 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 8 May 2026 18:06:23 +0900 Subject: [PATCH] Fix sentry logger init failing for edge cases (#37673) Closes https://github.com/ppy/osu/issues/37650. --- osu.Game/Utils/SentryLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Utils/SentryLogger.cs b/osu.Game/Utils/SentryLogger.cs index cf6c93a45b..8614bd89e1 100644 --- a/osu.Game/Utils/SentryLogger.cs +++ b/osu.Game/Utils/SentryLogger.cs @@ -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;