🎨 Automatic refresh of document tree information https://github.com/siyuan-note/siyuan/issues/11043

This commit is contained in:
Daniel 2024-09-28 23:41:09 +08:00
parent 18c41e000d
commit 63ae805106
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 34 additions and 5 deletions

View file

@ -91,7 +91,7 @@ func containTask(task *Task, tasks []*Task) bool {
}
for i, arg := range t.Args {
if arg != task.Args[i] {
if !reflect.DeepEqual(arg, task.Args[i]) {
return false
}
}