From 5067631f85fae948f855e45b1d27436566bae792 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 8 Aug 2021 13:12:48 -0500 Subject: [PATCH] Improvint Tiddler exportation. --- repository/Grafoscopio-Utils/HedgeDoc.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grafoscopio-Utils/HedgeDoc.class.st b/repository/Grafoscopio-Utils/HedgeDoc.class.st index 3ed9ede..ea4b3f0 100644 --- a/repository/Grafoscopio-Utils/HedgeDoc.class.st +++ b/repository/Grafoscopio-Utils/HedgeDoc.class.st @@ -30,7 +30,7 @@ HedgeDoc >> asTiddler [ title: self url segments first; text: (self contents ifNil: [ self retrieveContents]); type: 'text/x-markdown'; - created: DateAndTime now asString. + created: Tiddler nowLocal. ] { #category : #accessing }