🐛 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:
parent
11d2f7c580
commit
fee908d01e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue