Commit b0467069 authored by Ian McKellar's avatar Ian McKellar Committed by Adam Barth

Fix case of 'GET' HTTP method. (#3732)

Fixes #3730
parent e464a819
......@@ -126,7 +126,7 @@ class MojoClient {
Future<mojo.MojoDataPipeConsumer> readDataPipe(dynamic url, { Map<String, String> headers }) async {
mojom.UrlLoaderProxy loader = new mojom.UrlLoaderProxy.unbound();
mojom.UrlRequest request = _prepareRequest('get', url, headers);
mojom.UrlRequest request = _prepareRequest('GET', url, headers);
mojom.UrlResponse response;
try {
networkService.ptr.createUrlLoader(loader);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment