Restore missing call to RuntimeDelegate.OnRootIsolateCreated (#21953)

Fixes https://github.com/flutter/flutter/issues/68411
This commit is contained in:
Jason Simmons 2020-10-17 20:33:13 -07:00 committed by GitHub
parent e9a43c15b7
commit 499a70f5e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -397,6 +397,9 @@ bool RuntimeController::LaunchRootIsolate(
}
FML_DCHECK(Dart_CurrentIsolate() == nullptr);
client_.OnRootIsolateCreated();
return true;
}