Skip to content

Commit

Permalink
Remove confusing 'Downloaded' message
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Jun 10, 2018
1 parent 185f07a commit 6d8bfc4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -511,15 +511,15 @@ class TermDisplay(
}

override def completedTask(url: String, success: Boolean): Unit =
updateThread.removeEntry(url, success, s"Downloaded $url\n")(x => x)
updateThread.removeEntry(url, success, s"$url\n")(x => x)

override def checkingUpdates(
url: String,
currentTimeOpt: Option[Long]): Unit =
updateThread.newEntry(
url,
CheckUpdateInfo(currentTimeOpt, None, isDone = false),
s"Checking $url\n"
s"$url\n"
)

}

0 comments on commit 6d8bfc4

Please sign in to comment.