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

This commit is contained in:
Daniel 2024-03-06 23:45:09 +08:00
parent c0a11f03a0
commit 88a97e8900
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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
}