mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-03-27 22:06:55 +00:00
Fixed problem with field mauling when reading skinny tiddlers
The problem was showing up as tiddlers with the field “fields” and the value “[Object object]”.
This commit is contained in:
parent
daa79a8612
commit
1086c51019
@ -145,7 +145,7 @@ TiddlyWebAdaptor.prototype.getSkinnyTiddlers = function(callback) {
|
||||
// Process the tiddlers to make sure the revision is a string
|
||||
var tiddlers = JSON.parse(data);
|
||||
for(var t=0; t<tiddlers.length; t++) {
|
||||
var tiddlerFields = self.convertTiddlerFromTiddlyWebFormat(tiddlers[t]);
|
||||
tiddlers[t] = self.convertTiddlerFromTiddlyWebFormat(tiddlers[t]);
|
||||
}
|
||||
// Invoke the callback with the skinny tiddlers
|
||||
callback(null,tiddlers);
|
||||
|
Loading…
x
Reference in New Issue
Block a user