Skip to content

Commit

Permalink
修复漫画堆部分漫画无法观看的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleydu committed Jul 18, 2020
1 parent b4fe9e1 commit dd631f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/hiroshi/cimoc/source/MH50.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public Request getImagesRequest(String cid, String path) {
return HttpUtils.getSimpleMobileRequest(url);
}

private final String[] server = {"https://mhcdn.manhuazj.com"};
private final String[] server = {"https://mhcdn.manhuazj.com","https://manga8.mlxsc.com","https://manga9.mlxsc.com"};

@Nullable
private String decrypt(String code) {
Expand Down Expand Up @@ -170,7 +170,7 @@ public List<ImageUrl> parseImages(String html) {
int imageListSize = imageList.size();
for (int i = 0; i != imageListSize; ++i) {
String key = imageList.getString(i);
String imageUrl = getImageUrlByKey(key, server[0], chapterPath);
String imageUrl = getImageUrlByKey(key, server[1], chapterPath);

list.add(new ImageUrl(i + 1, imageUrl, false));
}
Expand Down

0 comments on commit dd631f8

Please sign in to comment.