From 8560108717976e804578b015115e2e05198adf0b Mon Sep 17 00:00:00 2001 From: aabajyan Date: Sat, 20 Mar 2021 18:46:22 +0400 Subject: [PATCH] LibWeb: Add support to view JSON. Extremely small change, all I did is check for application/json, mime type and parsed it as text. --- Userland/Libraries/LibWeb/Loader/FrameLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Loader/FrameLoader.cpp b/Userland/Libraries/LibWeb/Loader/FrameLoader.cpp index 956fa31295..de60ced9da 100644 --- a/Userland/Libraries/LibWeb/Loader/FrameLoader.cpp +++ b/Userland/Libraries/LibWeb/Loader/FrameLoader.cpp @@ -140,7 +140,7 @@ bool FrameLoader::parse_document(DOM::Document& document, const ByteBuffer& data } if (mime_type.starts_with("image/")) return build_image_document(document, data); - if (mime_type == "text/plain") + if (mime_type == "text/plain" || mime_type == "application/json") return build_text_document(document, data); if (mime_type == "text/markdown") return build_markdown_document(document, data);