From dc526be49d3ba8fe2ee7fe379b75060e3c9f53eb Mon Sep 17 00:00:00 2001 From: fifty-six Date: Tue, 26 Jul 2022 19:54:35 -0400 Subject: [PATCH] Fix not saving that the ipv4 workaround is needed --- Scarab/ViewModels/MainWindowViewModel.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Scarab/ViewModels/MainWindowViewModel.cs b/Scarab/ViewModels/MainWindowViewModel.cs index 3f890527..bb70cc5b 100644 --- a/Scarab/ViewModels/MainWindowViewModel.cs +++ b/Scarab/ViewModels/MainWindowViewModel.cs @@ -90,9 +90,12 @@ void AddSettings(HttpClient hc) ); content = res.Result; - - if (res.NeededWorkaround) + + if (res.NeededWorkaround && !settings.RequiresWorkaroundClient) + { settings.RequiresWorkaroundClient = true; + settings.Save(); + } hc = res.Client; }