Skip to content

Commit

Permalink
fix CopyMH, closed #76
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleydu committed Aug 19, 2020
1 parent 0583be5 commit d1d69d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/com/hiroshi/cimoc/source/CopyMH.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import android.util.Base64;

import com.facebook.common.util.Hex;
import com.google.common.collect.Lists;
import com.hiroshi.cimoc.model.Chapter;
import com.hiroshi.cimoc.model.Comic;
import com.hiroshi.cimoc.model.ImageUrl;
Expand Down Expand Up @@ -124,7 +125,7 @@ public List<Chapter> parseChapter(String html) throws JSONException {
String path = array.getJSONObject(i).getString("uuid");
list.add(new Chapter(title, path));
}
return list;
return Lists.reverse(list);
}

@Override
Expand Down

0 comments on commit d1d69d5

Please sign in to comment.