From b66f86ccd43db963d94b4984f3228e37527b7080 Mon Sep 17 00:00:00 2001 From: Cassandra <87243814+CaasGit@users.noreply.github.com> Date: Wed, 17 Dec 2025 17:41:24 -0800 Subject: [PATCH] fix(Connector): Add a null ref check for xattr. --- SS14.Launcher/Models/Connector.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SS14.Launcher/Models/Connector.cs b/SS14.Launcher/Models/Connector.cs index 56290ea6..fed2f567 100644 --- a/SS14.Launcher/Models/Connector.cs +++ b/SS14.Launcher/Models/Connector.cs @@ -745,6 +745,8 @@ private static async Task GetLoaderStartInfo() RedirectStandardOutput = true }); + if (xattr is null) + throw new Exception("Xattr failed to start"); PipeLogOutput(xattr); await xattr.WaitForExitAsync();