Skip to content
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.

Commit

Permalink
fix reference to wrong request var in impl.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
yjbanov committed Aug 22, 2014
1 parent d947a00 commit 631ca7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SimpleRequestHandler extends RequestHandler {
if (resp.statusCode >= 200 && resp.statusCode < 300) {
var responseJson = jsonParse(resp.body, trace);
trace.record(new DeserializationStartEvent(resp.body.length));
var responsePayload = req.unmarshalResponse(responseJson);
var responsePayload = request.unmarshalResponse(responseJson);
trace.record(new DeserializationEndEvent());
ctrl.add(new Response(responsePayload, Source.RPC,
new DateTime.now().millisecondsSinceEpoch));
Expand Down

0 comments on commit 631ca7b

Please sign in to comment.