diff --git a/lib/src/in_app_localhost_server.dart b/lib/src/in_app_localhost_server.dart index cfb534bf..6770ee12 100644 --- a/lib/src/in_app_localhost_server.dart +++ b/lib/src/in_app_localhost_server.dart @@ -45,7 +45,7 @@ class InAppLocalhostServer { var body = List(); var path = request.requestedUri.path; path = (path.startsWith('/')) ? path.substring(1) : path; - path += (path.endsWith('/')) ? 't-rex.html' : ''; + path += (path.endsWith('/')) ? 'index.html' : ''; try { body = (await rootBundle.load(path)) @@ -85,4 +85,4 @@ class InAppLocalhostServer { } } -} \ No newline at end of file +}