diff options
author | bptato <nincsnevem662@gmail.com> | 2025-03-04 19:41:10 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2025-03-04 19:43:13 +0100 |
commit | c76003e0a9abfc22204fdf6e50f2c26dcc1ebc3c (patch) | |
tree | dcaa530fe71bf8a0c801c2240a26dfdf71d672e8 /src | |
parent | 8cd30053b02e20f1963ed7564d17de9ba80eaf93 (diff) | |
download | chawan-c76003e0a9abfc22204fdf6e50f2c26dcc1ebc3c.tar.gz |
blob: work around crash on nightly compiler
Apparently it's a bug in the optimizer. TODO: reduce & report it
Diffstat (limited to 'src')
-rw-r--r-- | src/types/blob.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/blob.nim b/src/types/blob.nim index 7a4a59f2..237f81d1 100644 --- a/src/types/blob.nim +++ b/src/types/blob.nim @@ -107,7 +107,7 @@ type #TODO endings FilePropertyBag = object of BlobPropertyBag - #TODO lastModified: int64 + lastModified: int64 proc newWebFile(ctx: JSContext; fileBits: seq[string]; fileName: string; options = FilePropertyBag()): WebFile {.jsctor.} = |