Insert FTS5 Data (it wasn't easy)

This commit is contained in:
Simon Martens
2025-02-16 15:00:05 +01:00
parent 3c0314814d
commit 16d1e39a2e
8 changed files with 599 additions and 158 deletions

View File

@@ -114,10 +114,10 @@ func (a *Item) SetEditState(editState string) {
a.Set(EDITSTATE_FIELD, editState)
}
func (a *Item) Comments() string {
func (a *Item) Comment() string {
return a.GetString(COMMENT_FIELD)
}
func (a *Item) SetComments(comments string) {
func (a *Item) SetComment(comments string) {
a.Set(COMMENT_FIELD, comments)
}