Re-implemented getting tasks with the new seperate endpoint #39

Open
konrad wants to merge 34 commits from feature/task-list into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit ac67ccbd4c - Show all commits

View File

@ -36,7 +36,7 @@ class Client {
port: uri.port,
path: uri.path,
query: uri.query,
queryParameters: queryParameters,
queryParameters: queryParameters, // Because dart takes a Map<String, String> here, it is only possible to sort by one parameter while the api supports n parameters.
fragment: uri.fragment);
return http.get(newUri, headers: _headers).then(_handleResponse);
}