This commit is contained in:
kolaente 2020-01-13 23:15:50 +01:00
parent b36f0215d8
commit ac67ccbd4c
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

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);
}