🐛 Assets starting with .
should not be considered missing assets https://github.com/siyuan-note/siyuan/issues/8821
This commit is contained in:
parent
b7beff91e5
commit
7548b1008c
1 changed files with 2 additions and 3 deletions
|
@ -742,11 +742,10 @@ func MissingAssets() (ret []string) {
|
|||
// Assets starting with `.` should not be considered missing assets https://github.com/siyuan-note/siyuan/issues/8821
|
||||
if !gulu.File.IsExist(filepath.Join(util.DataDir, dest)) {
|
||||
ret = append(ret, dest)
|
||||
continue
|
||||
}
|
||||
} else {
|
||||
ret = append(ret, dest)
|
||||
}
|
||||
|
||||
ret = append(ret, dest)
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue