🎨 数据同步后需要重新加载图片 OCR 提取结果 Fix https://github.com/siyuan-note/siyuan/issues/7114

This commit is contained in:
Liang Ding 2023-01-18 16:20:57 +08:00
parent 9c626ebc0b
commit 175a938eec
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
7 changed files with 21 additions and 9 deletions

View file

@ -176,7 +176,7 @@ func NetImg2LocalAssets(rootID string) (err error) {
}
}
name = strings.TrimSuffix(name, ext)
name = gulu.Str.SubStr(name, 63) // 插入资源文件时文件名长度最大限制 189 字节 https://github.com/siyuan-note/siyuan/issues/7099
name = gulu.Str.SubStr(name, 63) // 插入资源文件时文件名长度最大限制 63 个字 https://github.com/siyuan-note/siyuan/issues/7099
name = util.FilterFileName(name)
name = "net-img-" + name + "-" + ast.NewNodeID() + ext
writePath := filepath.Join(assetsDirPath, name)