Fix ChapterCache.isImageInCache() resource leak (#8907)
diskCache.get() returns a DiskLruCache.Snapshot which must be closed.
This commit is contained in:
parent
b6468c7e31
commit
8cea78de83
@ -128,7 +128,7 @@ class ChapterCache(private val context: Context) {
|
||||
*/
|
||||
fun isImageInCache(imageUrl: String): Boolean {
|
||||
return try {
|
||||
diskCache.get(DiskUtil.hashKeyForDisk(imageUrl)) != null
|
||||
diskCache.get(DiskUtil.hashKeyForDisk(imageUrl)).use { it != null }
|
||||
} catch (e: IOException) {
|
||||
false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user