From a4c8273824398a09c5322c4b479f1690efa200cb Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 19 Jun 2024 09:38:02 +0800 Subject: [PATCH] :bug: Fix https://github.com/siyuan-note/siyuan/issues/11755 --- kernel/model/export.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/model/export.go b/kernel/model/export.go index f1c094a22..2756f5b28 100644 --- a/kernel/model/export.go +++ b/kernel/model/export.go @@ -1487,6 +1487,8 @@ func exportBoxSYZip(boxID string) (zipPath string) { } func exportSYZip(boxID, rootDirPath, baseFolderName string, docPaths []string) (zipPath string) { + defer util.ClearPushProgress(100) + dir, name := path.Split(baseFolderName) name = util.FilterFileName(name) if strings.HasSuffix(name, "..") {