From d355f81c63a552ae4a6ad93e11f287e3bff5d298 Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Thu, 2 Oct 2025 11:22:54 +0300 Subject: [PATCH] fix installer version check --- Azaion.LoaderUI/Login.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Azaion.LoaderUI/Login.xaml.cs b/Azaion.LoaderUI/Login.xaml.cs index f497070..8d4be4d 100644 --- a/Azaion.LoaderUI/Login.xaml.cs +++ b/Azaion.LoaderUI/Login.xaml.cs @@ -164,8 +164,8 @@ public partial class Login { TbStatus.Text = "Checking for the newer version..."; var installerDir = _dirConfig?.IsStage ?? false - ? ConstantsLoader.SUITE_FOLDER - : ConstantsLoader.SUITE_STAGE_FOLDER; + ? ConstantsLoader.SUITE_STAGE_FOLDER + : ConstantsLoader.SUITE_FOLDER; var installerName = await _azaionApi.GetLastInstallerName(installerDir); try