We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de0c04 commit 908fe01Copy full SHA for 908fe01
shell/common/engine.cc
@@ -303,7 +303,8 @@ void Engine::DispatchPlatformMessage(fml::RefPtr<PlatformMessage> message) {
303
} else if (channel == kSettingsChannel) {
304
HandleSettingsPlatformMessage(message.get());
305
return;
306
- } else if (channel == kNavigationChannel) {
+ } else if (!runtime_controller_->IsRootIsolateRunning() &&
307
+ channel == kNavigationChannel) {
308
// If there's no runtime_, we may still need to set the initial route.
309
HandleNavigationPlatformMessage(std::move(message));
310
0 commit comments