Browse Source

:art: Database block supports export as CSV https://github.com/siyuan-note/siyuan/issues/10072

Daniel 1 year ago
parent
commit
785ca83fa0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/model/export.go

+ 1 - 1
kernel/model/export.go

@@ -169,7 +169,7 @@ func ExportAv2CSV(avID string) (zipPath string, err error) {
 	if nil != removeErr {
 		logging.LogErrorf("remove export folder [%s] failed: %s", exportFolder, removeErr)
 	}
-	zipPath = "/export/" + url.PathEscape(filepath.Base(zipPath))
+	zipPath = "/export/csv/" + url.PathEscape(filepath.Base(zipPath))
 	return
 }