From 2743fcb3f2208f2189d86eb2a9d4655000bcf8fb Mon Sep 17 00:00:00 2001 From: Henry Chen <37799836+dou23@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:04:49 +0800 Subject: [PATCH] fix: Box cannot be reopened after being closed (#730) --- libcore/box.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcore/box.go b/libcore/box.go index b90b414..a6decbe 100644 --- a/libcore/box.go +++ b/libcore/box.go @@ -144,6 +144,8 @@ func (b *BoxInstance) Close() (err error) { // close box b.Close() + // close box.Box + b.Box.Close() return nil }