Fixing JSON exporting error and recent changes repetitions.
This commit is contained in:
parent
cad212a9ff
commit
c75b44f160
@ -43,7 +43,7 @@ Tiddler >> asDictionary [
|
||||
at: 'type' put: self type;
|
||||
at: 'creator' put: self creator;
|
||||
at: 'modifier' put: self modifier;
|
||||
at: 'modified' put: self modified;
|
||||
at: 'modified' put: self modified asString;
|
||||
at: 'bag' put: self bag;
|
||||
at: 'revision' put: self revision;
|
||||
yourself.
|
||||
|
@ -51,8 +51,10 @@ TiddlyWiki >> changesAfter: aDate [
|
||||
and: [ tiddler modified > aDate ] ].
|
||||
|
||||
recent := OrderedCollection new.
|
||||
recent addAll: created; addAll: modified.
|
||||
^ recent
|
||||
recent
|
||||
addAll: created;
|
||||
addAll: modified.
|
||||
^ recent asSet.
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
|
Loading…
Reference in New Issue
Block a user