This commit is contained in:
Leo
2025-04-04 02:45:41 +08:00
parent 76c114b06d
commit 1187f8ef68

View File

@@ -565,7 +565,8 @@ public class JDUtil {
* */ * */
String result = ""; String result = "";
if (Util.isNotEmpty(response)) { if (Util.isNotEmpty(response)) {
if (response.getCode().equals("200")) { if (response.getCode().equals("0") &&
response.getGetResult().getCode() == 200) {
result = response.getGetResult().getData().getShortURL(); result = response.getGetResult().getData().getShortURL();
} }
} else { } else {