Просмотр исходного кода

Register TachiyomiImageDecoder after built-in Coil decoders

Not sure if this is related to #5702.
arkon 3 лет назад
Родитель
Сommit
eebfad5a95
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/src/main/java/eu/kanade/tachiyomi/App.kt

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/App.kt

@@ -116,12 +116,12 @@ open class App : Application(), LifecycleObserver, ImageLoaderFactory {
     override fun newImageLoader(): ImageLoader {
         return ImageLoader.Builder(this).apply {
             componentRegistry {
-                add(TachiyomiImageDecoder([email protected]))
                 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
                     add(ImageDecoderDecoder(this@App))
                 } else {
                     add(GifDecoder())
                 }
+                add(TachiyomiImageDecoder([email protected]))
                 add(ByteBufferFetcher())
                 add(MangaCoverFetcher())
             }