diff --git a/README.md b/README.md index a8f38eb7..734c17fb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +**Angel v1 users should stick to Dart 2.0.0-dev or lower. Dart 2 users will very soon be able to use version 2.0.0 of the entire Angel framework (try it now - `package:angel_framework@2.0.0-alpha`)!** + [![The Angel Framework](https://angel-dart.github.io/assets/images/logo.png)](https://angel-dart.github.io) [![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/angel_dart/discussion) diff --git a/lib/src/routes/routes.dart b/lib/src/routes/routes.dart index a01e5505..43206d9a 100644 --- a/lib/src/routes/routes.dart +++ b/lib/src/routes/routes.dart @@ -57,7 +57,7 @@ AngelConfigurer configureServer(FileSystem fileSystem) { else { if (e.statusCode == 404) { return await res - .render('error', {'message': 'No file exists at ${req.path}.'}); + .render('error', {'message': 'No file exists at ${req.uri}.'}); } return await res.render('error', {'message': e.message});