🐛 Block attributes are not refreshed after data syncing https://github.com/siyuan-note/siyuan/issues/11343

This commit is contained in:
Daniel 2024-05-11 11:11:15 +08:00
parent 89c55026ab
commit 0f915df236
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 21 additions and 2 deletions

4
kernel/cache/ial.go vendored
View file

@ -75,3 +75,7 @@ func GetBlockIAL(id string) (ret map[string]string) {
func RemoveBlockIAL(id string) {
blockIALCache.Del(id)
}
func ClearBlocksIAL() {
blockIALCache.Clear()
}