From 634fd007e1dfcf6580382794c293525e8e507e6b Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Thu, 19 Jun 2025 15:08:42 +0900 Subject: [PATCH] Ignore case when parsing `OSU_EXTERNAL_UPDATE_STREAM` --- osu.Game/Updater/NoActionUpdateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Updater/NoActionUpdateManager.cs b/osu.Game/Updater/NoActionUpdateManager.cs index 3f1e383a50..06189b488c 100644 --- a/osu.Game/Updater/NoActionUpdateManager.cs +++ b/osu.Game/Updater/NoActionUpdateManager.cs @@ -17,7 +17,7 @@ namespace osu.Game.Updater /// public partial class NoActionUpdateManager : UpdateManager { - private static ReleaseStream? externalReleaseStream => Enum.TryParse(Environment.GetEnvironmentVariable("OSU_EXTERNAL_UPDATE_STREAM"), out ReleaseStream stream) ? stream : null; + private static ReleaseStream? externalReleaseStream => Enum.TryParse(Environment.GetEnvironmentVariable("OSU_EXTERNAL_UPDATE_STREAM"), true, out ReleaseStream stream) ? stream : null; private string version = string.Empty;