From 772cc8cb8539ee7f611961edd1693d08dc29a219 Mon Sep 17 00:00:00 2001 From: halgari Date: Tue, 21 May 2024 10:00:13 -0600 Subject: [PATCH] Change the cookie we look at as a temporary fix for the updates to Nexus Mods --- Wabbajack.App.Wpf/UserIntervention/NexusLoginHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack.App.Wpf/UserIntervention/NexusLoginHandler.cs b/Wabbajack.App.Wpf/UserIntervention/NexusLoginHandler.cs index aa9e2f36..aaaf50c7 100644 --- a/Wabbajack.App.Wpf/UserIntervention/NexusLoginHandler.cs +++ b/Wabbajack.App.Wpf/UserIntervention/NexusLoginHandler.cs @@ -36,7 +36,7 @@ public class NexusLoginHandler : BrowserWindowViewModel while (true) { cookies = await GetCookies("nexusmods.com", token); - if (cookies.Any(c => c.Name == "member_id")) + if (cookies.Any(c => c.Name.Contains("SessionUser"))) break; token.ThrowIfCancellationRequested();