فهرست منبع

:bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321

Daniel 1 سال پیش
والد
کامیت
fee908d01e
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      kernel/model/upload.go

+ 2 - 2
kernel/model/upload.go

@@ -52,13 +52,13 @@ func InsertLocalAssets(id string, assetPaths []string, isUpload bool) (succMap m
 	}
 
 	for _, p := range assetPaths {
-		fName := filepath.Base(p)
+		baseName := filepath.Base(p)
+		fName := baseName
 		fName = util.FilterUploadFileName(fName)
 		ext := filepath.Ext(fName)
 		fName = strings.TrimSuffix(fName, ext)
 		ext = strings.ToLower(ext)
 		fName += ext
-		baseName := fName
 		if gulu.File.IsDir(p) || !isUpload {
 			if !strings.HasPrefix(p, "\\\\") {
 				p = "file://" + p