Refresh every second instead of 500ms.

This commit is contained in:
Antoine POPINEAU 2020-06-22 22:25:03 +02:00
parent ff2a915ba4
commit 7a72558d1a
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class DownloadsActivity : AppCompatActivity() {
GlobalScope.launch(IO) {
while (true) {
delay(500)
delay(1000)
refreshProgress()
}
}