From c136934aa838fd1376e874117f39df0ce6702a61 Mon Sep 17 00:00:00 2001 From: goaaats Date: Wed, 26 Nov 2025 21:46:07 +0100 Subject: [PATCH] Always pass a key, even for release Fixes an issue wherein the XL commandline parser wouldn't like the empty argument and error out --- Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs b/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs index 51ff3bdcd..4e95b718e 100644 --- a/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs +++ b/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs @@ -105,7 +105,7 @@ public class BranchSwitcherWindow : Window }; ps.ArgumentList.Add($"--dalamud-beta-kind={config.DalamudBetaKind}"); - ps.ArgumentList.Add($"--dalamud-beta-key={config.DalamudBetaKey}"); + ps.ArgumentList.Add($"--dalamud-beta-key={(config.DalamudBetaKey.IsNullOrEmpty() ? "invalid" : config.DalamudBetaKey)}"); Process.Start(ps); Environment.Exit(0);