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

Fix outdated mini_file_server.dart #61

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion httpserver/bin/mini_file_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Future main() async {
print("Couldn't bind to port 4044: $e");
exit(-1);
}
print('Listening on http://${server.address.address}:${server.port}/');
stevenanthonyrevo marked this conversation as resolved.
Show resolved Hide resolved
print('Listening on http://localhost:4044/');

await for (HttpRequest req in server) {
if (await targetFile.exists()) {
Expand Down