diff --git a/dist/plan b/dist/plan index 3a67b09..11aa328 100755 Binary files a/dist/plan and b/dist/plan differ diff --git a/plan/command/sync.go b/plan/command/sync.go index 4147028..8ffcb44 100644 --- a/plan/command/sync.go +++ b/plan/command/sync.go @@ -81,8 +81,11 @@ func (sync *Sync) do() error { return fmt.Errorf("could not unmarshal task body: %v", err) } tsk := item.Task{ - ID: u.ID, - TaskBody: tskBody, + ID: u.ID, + Date: u.Date, + Recurrer: u.Recurrer, + RecurNext: u.RecurNext, + TaskBody: tskBody, } if err := sync.taskRepo.Store(tsk); err != nil { return fmt.Errorf("could not store task: %v", err)