Index: sky/sdk/example/stocks/lib/stock_data.dart |
diff --git a/sky/sdk/example/stocks/lib/stock_data.dart b/sky/sdk/example/stocks/lib/stock_data.dart |
index 39201714fcb37f7aebeff5f989e85a0ccdb50b09..075add267579eaf5a14c2ed254517dd96f3c3331 100644 |
--- a/sky/sdk/example/stocks/lib/stock_data.dart |
+++ b/sky/sdk/example/stocks/lib/stock_data.dart |
@@ -4,6 +4,7 @@ |
import 'dart:convert'; |
import 'dart:math'; |
+ |
import 'package:sky/framework/net/fetch.dart'; |
// Snapshot from http://www.nasdaq.com/screening/company-list.aspx |
@@ -59,7 +60,7 @@ class StockDataFetcher { |
} |
void _fetchNextChunk() { |
- fetchBody('data/stock_data_${_currentChunk++}.json').then((Response response) { |
+ fetchBody('../data/stock_data_${_currentChunk++}.json').then((Response response) { |
String json = response.bodyAsString(); |
JsonDecoder decoder = new JsonDecoder(); |