From 5a6c2b91f8cdedf2ce03ecb3c5a21504a722c6e4 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 19 Mar 2013 18:26:55 +0000 Subject: [PATCH] Parse JSON as text so that it doesn't generate missing tiddlers --- core/modules/parsers/textparser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/parsers/textparser.js b/core/modules/parsers/textparser.js index afe85507a..f8c168132 100644 --- a/core/modules/parsers/textparser.js +++ b/core/modules/parsers/textparser.js @@ -26,6 +26,7 @@ var TextParser = function(type,text,options) { exports["text/plain"] = TextParser; exports["text/html"] = TextParser; exports["application/javascript"] = TextParser; +exports["application/json"] = TextParser; })();