Skip to content

Commit

Permalink
fix manhuadui
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleydu committed Aug 9, 2020
1 parent 622afbd commit b746093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions app/src/main/java/com/hiroshi/cimoc/source/CopyMH.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.hiroshi.cimoc.source;

import android.util.Base64;
import android.util.Log;

import com.facebook.common.util.Hex;
import com.hiroshi.cimoc.model.Chapter;
Expand Down Expand Up @@ -74,7 +73,6 @@ protected Comic parse(JSONObject object) {
String title = jChineseConvertor.t2s(object.getString("name"));
String cover = object.getString("cover");
String author = object.getJSONArray("author").getJSONObject(0).getString("name").trim();
Log.d("hrd cid", cid + "," + title + "," + cover + "," + author);
return new Comic(TYPE, cid, title, cover, null, author);
} catch (Exception e) {
e.printStackTrace();
Expand Down
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 @@ -129,8 +129,8 @@ public Request getImagesRequest(String cid, String path) {
@Nullable
private String decrypt(String code) {
//感谢破解秘钥的大佬zzy94269664
String key = "1739ZAQ12345bbG1";
String iv = "ABCDEF1G341234bb";
String key = "1739ZAQ54321bbG1";
String iv = "ABCDEF1G344321bb";
try {
return DecryptionUtils.aesDecrypt(code, key, iv);
} catch (Exception e) {
Expand Down

0 comments on commit b746093

Please sign in to comment.