瀏覽代碼

Using a float on the progress on app updates

Not sure if needed but I saw some funny behavior with the progress bar
Jay 4 年之前
父節點
當前提交
830a834ea6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/src/main/java/eu/kanade/tachiyomi/data/updater/UpdaterService.kt

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/data/updater/UpdaterService.kt

@@ -96,7 +96,7 @@ class UpdaterService : Service() {
             var lastTick = 0L
 
             override fun update(bytesRead: Long, contentLength: Long, done: Boolean) {
-                val progress = (100 * bytesRead / contentLength).toInt()
+                val progress = (100 * (bytesRead.toFloat() / contentLength)).toInt()
                 val currentTime = System.currentTimeMillis()
                 if (progress > savedProgress && currentTime - 200 > lastTick) {
                     savedProgress = progress