Skip to content

Commit 7046d53

Browse files
committed
Fix null uri passed
1 parent 32c4ad1 commit 7046d53

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend_server_common/lib/src/resident_runner.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ class ResidentWebRunner {
105105
// align with Flutter tools, but currently is not. Delete when that's fixed.
106106
required Uri fileServerUri}) async {
107107
final report = await _updateDevFS(
108-
initialCompile: false, fullRestart: fullRestart, fileServerUri: null);
108+
initialCompile: false,
109+
fullRestart: fullRestart,
110+
fileServerUri: fileServerUri);
109111
if (!report.success) {
110112
_logger.severe('Failed to compile application.');
111113
return 1;

0 commit comments

Comments
 (0)