mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Handle file names with multiple ".cbz" occurrences properly
Fixes #8838
This commit is contained in:
		@@ -312,7 +312,7 @@ class DownloadCache(
 | 
			
		||||
                                        // Folder of images
 | 
			
		||||
                                        it.isDirectory -> it.name
 | 
			
		||||
                                        // CBZ files
 | 
			
		||||
                                        it.isFile && it.name?.endsWith(".cbz") == true -> it.name!!.replace(".cbz", "")
 | 
			
		||||
                                        it.isFile && it.name?.endsWith(".cbz") == true -> it.name!!.substringBeforeLast(".cbz")
 | 
			
		||||
                                        // Anything else is irrelevant
 | 
			
		||||
                                        else -> null
 | 
			
		||||
                                    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user