Browse Source

Don't post too many notifications in the updater

len 8 năm trước cách đây
mục cha
commit
41397ab41d

+ 11 - 9
app/src/main/java/eu/kanade/tachiyomi/data/updater/UpdateDownloaderService.kt

@@ -6,7 +6,6 @@ import android.content.BroadcastReceiver
 import android.content.Context
 import android.content.Intent
 import android.content.IntentFilter
-import android.os.Build
 import eu.kanade.tachiyomi.BuildConfig
 import eu.kanade.tachiyomi.network.GET
 import eu.kanade.tachiyomi.network.NetworkHelper
@@ -59,14 +58,21 @@ class UpdateDownloaderService : IntentService(UpdateDownloaderService::class.jav
     fun downloadApk(url: String) {
         // Show notification download starting.
         sendInitialBroadcast()
-        // Progress of the download
-        var savedProgress = 0
 
         val progressListener = object : ProgressListener {
+
+            // Progress of the download
+            var savedProgress = 0
+
+            // Keep track of the last notification sent to avoid posting too many.
+            var lastTick = 0L
+
             override fun update(bytesRead: Long, contentLength: Long, done: Boolean) {
                 val progress = (100 * bytesRead / contentLength).toInt()
-                if (progress > savedProgress) {
+                val currentTime = System.currentTimeMillis()
+                if (progress > savedProgress && currentTime - 200 > lastTick) {
                     savedProgress = progress
+                    lastTick = currentTime
                     sendProgressBroadcast(progress)
                 }
             }
@@ -112,11 +118,7 @@ class UpdateDownloaderService : IntentService(UpdateDownloaderService::class.jav
             putExtra(UpdateDownloaderReceiver.EXTRA_ACTION, UpdateDownloaderReceiver.NOTIFICATION_UPDATER_PROGRESS)
             putExtra(UpdateDownloaderReceiver.EXTRA_PROGRESS, progress)
         }
-        // Prevents not showing of install notification TODO weird Android N bug. Find out what goes wrong
-        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N || progress <= 95) {
-            // Show download progress notification.
-            sendLocalBroadcastSync(intent)
-        }
+        sendLocalBroadcastSync(intent)
     }
 
     /**