1
0

Make validation less verbose (#24)

This commit is contained in:
konrad
2018-11-25 21:38:50 +00:00
committed by Gitea
parent e5c1588576
commit b73786f7fe
5 changed files with 5 additions and 5 deletions

View File

@ -76,7 +76,7 @@ func (i *ListTask) Update() (err error) {
ot.Done = false
}
_, err = x.ID(i.ID).Cols("text", "description", "done", "due_date_unix", "reminder_unix").Update(ot)
_, err = x.ID(i.ID).Cols("text", "description", "done", "due_date_unix", "reminders_unix").Update(ot)
*i = ot
return
}