fix(migration): make migration from Microsoft Todo work for those with previously migrated wunderlist accounts (#2126)
This commit is contained in:
parent
f67802721a
commit
31da3c4533
|
|
@ -218,7 +218,7 @@ func getMicrosoftTodoData(token string) (microsoftTodoData []*project, err error
|
|||
microsoftTodoData = []*project{}
|
||||
|
||||
projects := &projectsResponse{}
|
||||
err = makeAuthenticatedGetRequest(token, "lists", projects)
|
||||
err = makeAuthenticatedGetRequest(token, "lists/delta", projects)
|
||||
if err != nil {
|
||||
log.Errorf("[Microsoft Todo Migration] Could not get projects: %s", err)
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in New Issue