Fix content type for TiddlyWeb

print-window-tiddler
Jeremy Ruston 2012-11-19 17:35:12 +00:00
rodzic 3d38d4add3
commit 49ca83e17d
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -506,6 +506,10 @@ TiddlyWebSyncer.prototype.convertTiddlerToTiddlyWebFormat = function(title) {
}
});
}
// Convert the type "text/x-tiddlywiki" into null
if(result.type === "text/x-tiddlywiki") {
result.type = null;
}
return JSON.stringify(result);
};