mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-04-17 11:02:11 -07:00
Fix content type for TiddlyWeb
This commit is contained in:
parent
3d38d4add3
commit
49ca83e17d
1 changed files with 4 additions and 0 deletions
|
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue