소스 검색

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

Daniel 1 년 전
부모
커밋
785ca83fa0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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
 }