fix: Box cannot be reopened after being closed (#730)

This commit is contained in:
Henry Chen 2024-08-05 17:04:49 +08:00 committed by GitHub
parent 4fd1147bff
commit 2743fcb3f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -144,6 +144,8 @@ func (b *BoxInstance) Close() (err error) {
// close box
b.Close()
// close box.Box
b.Box.Close()
return nil
}