Chromium Code Reviews| Index: pkg/oauth2/lib/src/client.dart |
| diff --git a/pkg/oauth2/lib/src/client.dart b/pkg/oauth2/lib/src/client.dart |
| index ec8dda5f2f9eca867d19b8afb34e54654343503f..e9c977a9412b0419aacbc64e9de7431d86d1c273 100644 |
| --- a/pkg/oauth2/lib/src/client.dart |
| +++ b/pkg/oauth2/lib/src/client.dart |
| @@ -109,7 +109,7 @@ class Client extends http.BaseClient { |
| if (!params.containsKey('error')) return response; |
| throw new AuthorizationException( |
| - params['error'], params['error_description'], params['error_uri']); |
| + params['error'], params['error_description'], Uri.parse(params['error_uri'])); |
|
nweiz
2013/04/29 19:46:16
Long line.
|
| }); |
| } |