Register TachiyomiImageDecoder after built-in Coil decoders

Not sure if this is related to #5702.
This commit is contained in:
arkon 2021-08-28 12:29:11 -04:00
parent 77c0a93ac6
commit eebfad5a95

View File

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