mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Fix #179
This commit is contained in:
		| @@ -153,7 +153,7 @@ public class ChapterRecognition { | ||||
|             Matcher m = uncleanNumber.matcher(text); | ||||
|             if (m.find()) { | ||||
|                 try { | ||||
|                     Float value = Float.parseFloat(m.group(1)); | ||||
|                     Float value = Float.parseFloat(m.group(1).replaceAll(",", ".")); | ||||
|                     if (!occurences.contains(value)) { | ||||
|                         occurences.add(value); | ||||
|                     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user