diff --git a/desktop/plugins/public/network/utils.tsx b/desktop/plugins/public/network/utils.tsx index 9d6c4515a..81daac04e 100644 --- a/desktop/plugins/public/network/utils.tsx +++ b/desktop/plugins/public/network/utils.tsx @@ -39,7 +39,8 @@ export function isTextual(headers?: Array
): boolean { contentType.startsWith('application/json') || contentType.startsWith('multipart/') || contentType.startsWith('message/') || - contentType.startsWith('image/svg') + contentType.startsWith('image/svg') || + contentType.startsWith('application/xhtml+xml') ); }