From dc395e51363ec45de793472b7177e52f6ec45123 Mon Sep 17 00:00:00 2001 From: Scighost Date: Wed, 23 Oct 2024 12:15:53 +0800 Subject: [PATCH] fix the bug where login url is incorrect of zzz #1109 --- src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs b/src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs index ab6a772b0..ec7e1cf93 100644 --- a/src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs +++ b/src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs @@ -51,9 +51,10 @@ private string GetGameBizUrl() { return CurrentGameBiz.ToGame().Value switch { - GameBiz.bh3 => $"{URL_CN}bh3", GameBiz.hk4e => $"{URL_CN}ys", GameBiz.hkrpg => $"{URL_CN}sr", + GameBiz.bh3 => $"{URL_CN}bh3", + GameBiz.nap => $"{URL_CN}zzz", _ => URL_CN, }; }