🐛 非折叠块搜索跳转不应该聚焦 Fix https://github.com/siyuan-note/siyuan/issues/7276

This commit is contained in:
Liang Ding 2023-02-07 17:30:54 +08:00
parent 12a6962451
commit 0c85850088
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -91,7 +91,7 @@ func IsBlockFolded(id string) bool {
for i := 0; i < 32; i++ {
b, _ := getBlock(id, nil)
if nil == b {
return true
return false
}
if "1" == b.IAL["fold"] {