1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 07:08:20 +00:00

remove code causing conversion of text/x-tiddlywiki type tiddlers to text/vnd.tiddlywiki

This commit is contained in:
buggyj 2014-09-01 11:48:40 +02:00
parent 1b964873c4
commit 5b7dbfc5fb

View File

@ -245,10 +245,7 @@ TiddlyWebAdaptor.prototype.convertTiddlerToTiddlyWebFormat = function(tiddler) {
}
});
}
// Default the content type and convert the type "text/x-tiddlywiki" into null
if(result.type === "text/x-tiddlywiki") {
result.type = null;
};
// Default the content type
result.type = result.type || "text/vnd.tiddlywiki";
return JSON.stringify(result,null,$tw.config.preferences.jsonSpaces);
};