[PATCH] Fix trickstorages deserializing as immutable
Export this patch
From: Alwinfy <20421383+Alwinfy@users.noreply.github.com>
---
main.rkt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.rkt b/main.rkt
index dcd1f10..ca7aadd 100755
--- a/main.rkt
+++ b/main.rkt
@@ -399,7 +399,7 @@
(hash-ref json 'author)
(hash-ref json 'body)
(hash-ref json 'created)
- (hash-ref json 'data make-hash)
+ (make-hash (hash->list (hash-ref json 'data #hash())))
(hash-ref json 'invocations)))
(define command-table
--
2.25.1