mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Bugfix. Sharing images with very long name (#1999)
* Fix sharing with very long images name * Fix dropLast to take
This commit is contained in:
		| @@ -434,7 +434,8 @@ class ReaderPresenter( | ||||
|  | ||||
|         // Build destination file. | ||||
|         val filename = DiskUtil.buildValidFilename( | ||||
|                 "${manga.title} - ${chapter.name}") + " - ${page.number}.${type.extension}" | ||||
|                 "${manga.title} - ${chapter.name}".take(225) | ||||
|         ) + " - ${page.number}.${type.extension}" | ||||
|  | ||||
|         val destFile = File(directory, filename) | ||||
|         stream().use { input -> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user