Browse Source

:bug: Database filtering does not work after change the field type https://github.com/siyuan-note/siyuan/issues/10519

Daniel 1 year ago
parent
commit
88a97e8900
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/av/value.go

+ 1 - 1
kernel/av/value.go

@@ -184,7 +184,7 @@ func (value *Value) Clone() (ret *Value) {
 }
 
 func (value *Value) IsEdited() bool {
-	if 1709454120000 > value.CreatedAt {
+	if 1709740800000 > value.CreatedAt {
 		// 说明是旧数据,认为都是编辑过的
 		return true
 	}