mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Another fix for batoto chapter dates
This commit is contained in:
		| @@ -52,7 +52,7 @@ public class Batoto extends Source { | ||||
|     public Batoto(Context context) { | ||||
|         super(context); | ||||
|  | ||||
|         datePattern = Pattern.compile("(\\d+|A)\\s+(.*?)s? ago.*"); | ||||
|         datePattern = Pattern.compile("(\\d+|A|An)\\s+(.*?)s? ago.*"); | ||||
|         dateFields = new HashMap<String, Integer>() {{ | ||||
|             put("second", Calendar.SECOND); | ||||
|             put("minute", Calendar.MINUTE); | ||||
| @@ -352,7 +352,7 @@ public class Batoto extends Source { | ||||
|  | ||||
|             if (m.matches()) { | ||||
|                 String number = m.group(1); | ||||
|                 int amount = number.equals("A") ? 1 : Integer.parseInt(m.group(1)); | ||||
|                 int amount = number.contains("A") ? 1 : Integer.parseInt(m.group(1)); | ||||
|                 String unit = m.group(2); | ||||
|  | ||||
|                 Calendar cal = Calendar.getInstance(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user