fix(migration): make migration from Microsoft Todo work for those with previously migrated wunderlist accounts (#2126)

This commit is contained in:
Micah
2026-02-17 09:54:03 -06:00
committed by GitHub
parent f67802721a
commit 31da3c4533

View File

@@ -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