| Index: lib/src/runner/browser/static/host.dart
|
| diff --git a/lib/src/runner/browser/static/host.dart b/lib/src/runner/browser/static/host.dart
|
| index 8f6d6154e4feca2d73d63b5fc238564895760618..8d9a1cfa09e59845978200504a66446387485bb4 100644
|
| --- a/lib/src/runner/browser/static/host.dart
|
| +++ b/lib/src/runner/browser/static/host.dart
|
| @@ -126,7 +126,7 @@ StreamChannel _connectToIframe(String url) {
|
|
|
| message.stopPropagation();
|
| inputController.add(message.data["data"]);
|
| - readyCompleter.complete();
|
| + if (!readyCompleter.isCompleted) readyCompleter.complete();
|
| });
|
|
|
| outputController.stream.listen((message) {
|
|
|