1
0
mirror of https://github.com/apognu/otter synced 2025-02-14 01:40:39 +01:00

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

View File

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