Improving tiddlers importation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-09-06 18:27:40 -05:00
parent 307ed4809b
commit 27eb70e928
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ Tiddler >> fromDictionary: aDictionary [
| customKeys |
self
title: (aDictionary at: 'title');
text: (aDictionary at: 'text');
text: (aDictionary at: 'text' ifAbsentPut: [ nil ]);
tags: (aDictionary at: 'tags' ifAbsentPut: [ nil ]);
created: (aDictionary at: 'created' ifAbsentPut: [ nil ]);
creator: (aDictionary at: 'creator' ifAbsentPut: [ nil ]);