mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +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