Pass missing parameter. (flutter/engine#4260)

This commit is contained in:
Zachary Anderson
2017-10-23 07:47:37 -07:00
committed by GitHub
parent 87a0a52941
commit 8f1fbe7481

View File

@@ -220,7 +220,7 @@ void Engine::RunBundleAndSnapshot(const std::string& bundle_path,
bool reuse_runtime_controller) {
TRACE_EVENT0("flutter", "Engine::RunBundleAndSnapshot");
if (snapshot_override.empty()) {
RunBundle(bundle_path, entrypoint);
RunBundle(bundle_path, entrypoint, reuse_runtime_controller);
return;
}
ConfigureAssetBundle(bundle_path);