Skip to content

Commit

Permalink
Map fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daegalus committed Jun 5, 2013
1 parent a6d014d commit 958d310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fukiya_context.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FukiyaContext {
FukiyaContext(HttpRequest request) {
this.request = request;
response = request.response;
params = request.uri.queryParameters;
params = new Map.from(request.uri.queryParameters);
data = new HashMap();
parsedBody = new HashMap();
}
Expand Down

0 comments on commit 958d310

Please sign in to comment.