Runt
2026-04-28 d04b89a739078d36060b4a3af0779470327b40ab
libmvi/src/main/java/com/runt/open/mvi/retrofit/converter/DecryptGsonResponseBodyConverter.java
@@ -86,7 +86,7 @@
        }
        if(TextUtils.isEmpty(body)){
        }else if(body.indexOf("{") == 0) {
        }else if(body.indexOf("{") == 0 && body.indexOf(ENCRYPT) > -1) {
            body = RSAUtils.decryptVerify(body,ENCRYPT);
        }
        return transHump? GsonUtils.toHumpJson(body):body;