This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-09-01 16:22:17 -05:00
commit d0f0d7fe34
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ Tiddler >> fromDictionary: aDictionary [
revision: (aDictionary at: 'revision' ifAbsentPut: [ nil ]).
customKeys := aDictionary keys
copyWithoutAll: (self class instanceVariables collect: [ :each | each name ]).
(customKeys includesKey: 'uid') ifFalse: [ self uidGenerator ].
(customKeys includes: 'uid') ifFalse: [ self uidGenerator ].
customKeys do: [:key | | valueTemp |
valueTemp := aDictionary at: key.
valueTemp class = Array