Skip to content

Commit

Permalink
feat: json decode for case detail
Browse files Browse the repository at this point in the history
  • Loading branch information
QizhengMo committed Dec 6, 2023
1 parent c5902fa commit 592e485
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static Object tryParseBase64Json(String base64Str) {
if (StringUtils.isBlank(base64Str)) {
return base64Str;
}
byte[] bytes = Base64.getDecoder().decode(base64Str);
byte[] bytes = Base64.getDecoder().decode(base64Str.replace("\"", ""));
return COMMON_MAPPER.readTree(bytes);
} catch (Exception e) {
// failed quite often, so don't log it
Expand Down

0 comments on commit 592e485

Please sign in to comment.