Browse Source

Don't show "TB"

pull/685/head
YFdyh000 5 years ago
parent
commit
3b06b553eb
  1. 4
      v2rayN/v2rayN/Tool/Utils.cs

4
v2rayN/v2rayN/Tool/Utils.cs

@ -285,14 +285,14 @@ namespace v2rayN
if (GBs > 0)
{
// multi GB
ulong TBs = GBs / factor;
/*ulong TBs = GBs / factor;
if (TBs > 0)
{
// 你是魔鬼吗? 用这么多流量
result = TBs + GBs % factor / (factor + 0.0);
unit = "TB";
return;
}
}*/
result = GBs + MBs % factor / (factor + 0.0);
unit = "GB";
return;

Loading…
Cancel
Save