From 26148fdcce9c239ee551d2a321fddc930b5a04a1 Mon Sep 17 00:00:00 2001 From: Poilly Date: Tue, 4 Apr 2023 18:35:08 +0800 Subject: [PATCH] fix Uri typo for instruction "https://xunkong.cc/help/desktop/account.html"->"https://xunkong.cc/help/xunkong/account.html" --- Xunkong.Widget/MainPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xunkong.Widget/MainPage.xaml.cs b/Xunkong.Widget/MainPage.xaml.cs index ff3cec5..5dbfc10 100644 --- a/Xunkong.Widget/MainPage.xaml.cs +++ b/Xunkong.Widget/MainPage.xaml.cs @@ -151,7 +151,7 @@ private async void Button_Add_Click(object sender, RoutedEventArgs e) var stackPanel = new StackPanel { Spacing = 8 }; var hyperLink = new Hyperlink { - NavigateUri = new Uri("https://xunkong.cc/help/desktop/account.html"), + NavigateUri = new Uri("https://xunkong.cc/help/xunkong/account.html"), UnderlineStyle = UnderlineStyle.None, }; hyperLink.Inlines.Add(new Run { Text = "如何获取 Cookie" });