Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1719)

Unified Diff: sky/sdk/lib/framework/net/fetch.dart

Issue 1169253002: Fix typo in fetch.dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/net/fetch.dart
diff --git a/sky/sdk/lib/framework/net/fetch.dart b/sky/sdk/lib/framework/net/fetch.dart
index 5872af30db747d28bde0c8764cf8b7e515c4a2ee..a05f2ab0a9db618a3ab31fc3f0d1124590a1a2cd 100644
--- a/sky/sdk/lib/framework/net/fetch.dart
+++ b/sky/sdk/lib/framework/net/fetch.dart
@@ -44,7 +44,7 @@ Future<UrlResponse> fetchUrl(String relativeUrl) async {
}
Future<Response> fetchBody(String relativeUrl) async {
- UrlResponse response = await fetchMojo(relativeUrl);
+ UrlResponse response = await fetchUrl(relativeUrl);
if (response.body == null) return new Response(null);
ByteData data = await core.DataPipeDrainer.drainHandle(response.body);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698