diff options
author | bptato <nincsnevem662@gmail.com> | 2024-11-16 19:18:33 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-11-16 19:21:07 +0100 |
commit | 351f2f51322c2fa291772c46b06d1a0af2cd26f7 (patch) | |
tree | ab69ad83476bad1c74a25d809414804b67a8e21b /src | |
parent | ba808062f18adfe227cf2f5b3c283f43827274cd (diff) | |
download | chawan-351f2f51322c2fa291772c46b06d1a0af2cd26f7.tar.gz |
container: do not share cached images on clone
this was causing images to disappear sometimes
Diffstat (limited to 'src')
-rw-r--r-- | src/local/container.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/local/container.nim b/src/local/container.nim index fcbe01ba..e0a5f3b4 100644 --- a/src/local/container.nim +++ b/src/local/container.nim @@ -264,6 +264,7 @@ proc clone*(container: Container; newurl: URL; loader: FileLoader): nc.retry = @[] nc.parent = nil nc.children = @[] + nc.cachedImages = @[] return nc ) |