This commit is contained in:
konrad 2018-08-30 19:14:16 +02:00 committed by kolaente
parent 478c98fb8d
commit 76f3357a0c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 22 additions and 22 deletions

View File

@ -22,7 +22,7 @@ type List struct {
func (l *List) AfterLoad() {
// Get the owner
l.Owner, _= GetUserByID(l.OwnerID)
l.Owner, _ = GetUserByID(l.OwnerID)
// Get the list tasks
l.Tasks, _ = GetTasksByListID(l.ID)