mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 03:02:53 +00:00
Compare commits
2 commits
153e2161a3
...
fe945a9698
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe945a9698 | ||
|
|
9137bd0924 |
1 changed files with 7 additions and 1 deletions
|
|
@ -103,9 +103,15 @@ public class DownloaderHelper
|
|||
{
|
||||
var finalSpeed = (maxSpeed / 1000 / 1000).ToString("#0.0");
|
||||
progress.Report(finalSpeed);
|
||||
}else if (value.Error != null) {
|
||||
}
|
||||
else if (value.Error != null)
|
||||
{
|
||||
progress.Report(value.Error?.Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
progress.Report("0");
|
||||
}
|
||||
}
|
||||
};
|
||||
//progress.Report("......");
|
||||
|
|
|
|||
Loading…
Reference in a new issue