Browse Source

Mark isDownloading flag as volatile (maybe fixes #3219)

arkon 4 years ago
parent
commit
3d43473bf8

+ 1 - 0
app/src/main/java/eu/kanade/tachiyomi/data/download/DownloadNotifier.kt

@@ -32,6 +32,7 @@ internal class DownloadNotifier(private val context: Context) {
     /**
      * Status of download. Used for correct notification icon.
      */
+    @Volatile
     private var isDownloading = false
 
     /**