🎨 Limit the database title to 512 characters https://github.com/siyuan-note/siyuan/issues/15459

This commit is contained in:
Daniel 2025-08-24 15:16:10 +08:00
parent 014ecca54c
commit 202ccfa5cf
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -101,10 +101,7 @@ func checkAttrView(attrView *av.AttributeView, view *av.View) {
} }
} }
if strings.Contains(attrView.Name, "\n") { attrView.Name = strings.ReplaceAll(attrView.Name, "\n", " ")
attrView.Name = strings.ReplaceAll(attrView.Name, "\n", " ")
}
// 截断超长的数据库标题 Limit the database title to 512 characters https://github.com/siyuan-note/siyuan/issues/15459 // 截断超长的数据库标题 Limit the database title to 512 characters https://github.com/siyuan-note/siyuan/issues/15459
if 512 < utf8.RuneCountInString(attrView.Name) { if 512 < utf8.RuneCountInString(attrView.Name) {
attrView.Name = gulu.Str.SubStr(attrView.Name, 512) attrView.Name = gulu.Str.SubStr(attrView.Name, 512)