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

This commit is contained in:
Daniel 2023-09-30 20:19:26 +08:00
parent 11d2f7c580
commit fee908d01e
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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