mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-03 23:58:55 +01:00 
			
		
		
		
	Fix image MIME issues that cause download errors (#7562)
* Downloader: ignore non-image MIME to prevent .bin extensions
* ProgressResponseBody: allow null content type
Co-authored-by: anenasa <84259093+anenasa@users.noreply.github.com>
Co-authored-by: anenasa <84259093+anenasa@users.noreply.github.com>
(cherry picked from commit 3547d0142f)
			
			
This commit is contained in:
		@@ -465,7 +465,7 @@ class Downloader(
 | 
			
		||||
     */
 | 
			
		||||
    private fun getImageExtension(response: Response, file: UniFile): String {
 | 
			
		||||
        // Read content type if available.
 | 
			
		||||
        val mime = response.body?.contentType()?.let { ct -> "${ct.type}/${ct.subtype}" }
 | 
			
		||||
        val mime = response.body?.contentType()?.run { if (type == "image") "image/$subtype" else null }
 | 
			
		||||
            // Else guess from the uri.
 | 
			
		||||
            ?: context.contentResolver.getType(file.uri)
 | 
			
		||||
            // Else read magic numbers.
 | 
			
		||||
 
 | 
			
		||||
@@ -15,8 +15,8 @@ class ProgressResponseBody(private val responseBody: ResponseBody, private val p
 | 
			
		||||
        source(responseBody.source()).buffer()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    override fun contentType(): MediaType {
 | 
			
		||||
        return responseBody.contentType()!!
 | 
			
		||||
    override fun contentType(): MediaType? {
 | 
			
		||||
        return responseBody.contentType()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    override fun contentLength(): Long {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user