Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mili-tan committed Feb 15, 2019
1 parent c50af8e commit 7133ed6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AuroraGUI/DnsSvr/DnsSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class UrlSettings
public static string GeoIpApi = "https://api.ip.sb/geoip/";
public static string WhatMyIpApi = "http://whatismyip.akamai.com/";
public static string MDnsList = "https://cdn.jsdelivr.net/gh/AuroraDNS/AuroraDNS.github.io/Global/DNS.list";
public static string MDohList = "https://cdn.jsdelivr.net/gh/AuroraDNS/AuroraDNS.github.io/DoH.list";
public static string MDohList = "https://cdn.jsdelivr.net/gh/AuroraDNS/AuroraDNS.github.io/Global/DoH.list";

public static void ReadConfig(string path)
{
Expand Down
2 changes: 1 addition & 1 deletion AuroraGUI/Forms/SpeedWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private void Button_Click(object sender, RoutedEventArgs e)
delayTime = Ping.Tcping(item.Server, 53).Average();
}
else
delayTime = Ping.Curl(ListStrings[i], "auroradns.github.io").Average();
delayTime = Ping.Curl(ListStrings[i].Split('*')[0].Trim(), "auroradns.github.io").Average();

bgWorker.ReportProgress(i++,
new SpeedList
Expand Down

0 comments on commit 7133ed6

Please sign in to comment.