diff --git a/SparkleLib/SparkleRepoBase.cs b/SparkleLib/SparkleRepoBase.cs index dfbcbee0..83106f41 100755 --- a/SparkleLib/SparkleRepoBase.cs +++ b/SparkleLib/SparkleRepoBase.cs @@ -278,6 +278,9 @@ namespace SparkleLib { protected void OnProgressChanged (double progress_percentage, string progress_speed) { + if (progress_percentage < 1) + return; + // Only trigger the ProgressChanged event once per second if (DateTime.Compare (this.progress_last_change, DateTime.Now.Subtract (this.progress_change_interval)) >= 0) return; diff --git a/SparkleShare/SparkleStatusIconController.cs b/SparkleShare/SparkleStatusIconController.cs index 4948435b..dbf7d165 100755 --- a/SparkleShare/SparkleStatusIconController.cs +++ b/SparkleShare/SparkleStatusIconController.cs @@ -252,7 +252,7 @@ namespace SparkleShare { error_message = "Authentication failed"; } else if (repo.Error == ErrorStatus.DiskSpaceExcedeed) { - error_message = "Host identity changed"; + error_message = "Out of disk space"; } else { error_message = "";