From 16d03784e79636f537cd075d87d800c6699de4c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=9B=BD=E4=BC=9F?= <366193849@qq.com> Date: Thu, 18 Nov 2021 13:01:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8localhost=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FastGithub.UI/FlowChart.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastGithub.UI/FlowChart.xaml.cs b/FastGithub.UI/FlowChart.xaml.cs index 3c37132..8632710 100644 --- a/FastGithub.UI/FlowChart.xaml.cs +++ b/FastGithub.UI/FlowChart.xaml.cs @@ -73,7 +73,7 @@ namespace FastGithub.UI private async Task FlushFlowStatisticsAsync(HttpClient httpClient) { - var response = await httpClient.GetAsync("http://127.0.0.1/flowStatistics"); + var response = await httpClient.GetAsync("http://localhost/flowStatistics"); var json = await response.EnsureSuccessStatusCode().Content.ReadAsStringAsync(); var flowStatistics = JsonConvert.DeserializeObject(json); if (flowStatistics == null)