This commit is contained in:
phact 2023-08-28 23:39:21 -04:00
parent 228957784e
commit 052adc5c51

View File

@ -233,6 +233,9 @@ public class HttpConsoleFormats {
if (contentType.toLowerCase().startsWith("text")) {
return true;
}
if (contentType.toLowerCase().startsWith("application/json")) {
return true;
}
return PRINTABLE.contains(contentType.split("/")[0].toLowerCase());
}