Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #63 from Classy-Bear/master
Browse files Browse the repository at this point in the history
Fix known issues: Tutorial 'Write HTTP clients & servers' doesn't workk as expected
  • Loading branch information
kwalrath authored Sep 28, 2020
2 parents d59dfbb + 6c9a13b commit 9349238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpserver/bin/mini_file_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Future main() async {
} else {
print("Can't open ${targetFile.path}.");
req.response.statusCode = HttpStatus.notFound;
await req.response.close();
}
await req.response.close();
}
}

0 comments on commit 9349238

Please sign in to comment.