mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-13 22:29:45 +08:00
[ReactNative] Allow recover from debugger error
This commit is contained in:
@@ -592,7 +592,13 @@ static id<RCTJavaScriptExecutor> _latestJSExecutor;
|
||||
}];
|
||||
|
||||
|
||||
if (_bundlePath != nil) { // Allow testing without a script
|
||||
if (_javaScriptExecutor == nil) {
|
||||
/**
|
||||
* HACK (tadeu): If it failed to connect to the debugger, set loaded to true so we can
|
||||
* reload
|
||||
*/
|
||||
_loaded = YES;
|
||||
} else if (_bundlePath != nil) { // Allow testing without a script
|
||||
RCTJavaScriptLoader *loader = [[RCTJavaScriptLoader alloc] initWithBridge:self];
|
||||
[loader loadBundleAtURL:[NSURL URLWithString:_bundlePath]
|
||||
onComplete:^(NSError *error) {
|
||||
|
||||
Reference in New Issue
Block a user