From 73869d7f69233ee6d48cbda74ea77abd54555c96 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 23 Sep 2025 20:34:36 +0800 Subject: [PATCH] :bug: https://github.com/siyuan-note/siyuan/issues/15915 Signed-off-by: Daniel <845765@qq.com> --- kernel/av/filter.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kernel/av/filter.go b/kernel/av/filter.go index 3213c1ee7..d57293c68 100644 --- a/kernel/av/filter.go +++ b/kernel/av/filter.go @@ -541,6 +541,10 @@ func (value *Value) filter(other *Value, relativeDate, relativeDate2 *RelativeDa return !value.Checkbox.Checked } } + case KeyTypeRelation: + if nil != value.Relation && nil != other && nil != other.Relation { + return filterTextContent(operator, value.Relation.Contents[0].Block.Content, other.Relation.Contents[0].Block.Content) + } } return false }