Skip to content

Commit

Permalink
fix the bug where login url is incorrect of zzz Scighost#1109
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost authored and Eric-Joker committed Oct 23, 2024
1 parent 9316620 commit dc395e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Starward/Pages/HoyolabToolbox/LoginPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
}
Expand Down

0 comments on commit dc395e5

Please sign in to comment.