Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Another fix for batoto chapter dates

Cette révision appartient à :
inorichi 2015-12-05 15:49:48 +01:00
Parent eaab0f33ce
révision 758ebfca0b

Voir le fichier

@ -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();