fix crash

pull/695/head
YFdyh000 2020-04-18 14:55:23 +08:00
parent efaec3ee17
commit 32b98524ff
1 changed files with 4 additions and 2 deletions

View File

@ -1103,8 +1103,10 @@ namespace v2rayN.Forms
{
up /= (ulong)(config.statisticsFreshRate / 1000f);
down /= (ulong)(config.statisticsFreshRate / 1000f);
toolSslServerSpeed.Text = string.Format("{0}/s↑ | {1}/s↓", Utils.HumanFy(up), Utils.HumanFy(down));
this.Invoke((MethodInvoker)(delegate
{
toolSslServerSpeed.Text = string.Format("{0}/s↑ | {1}/s↓", Utils.HumanFy(up), Utils.HumanFy(down));
}));
List<string[]> datas = new List<string[]>();
for (int i = 0; i < config.vmess.Count; i++)
{