Skip to content

Commit 860f673

Browse files
zhongwuzwpull[bot]
authored andcommitted
Fixes bundle url reset logic (#43680)
Summary: Fixes bundle url reset logic ## Changelog: [IOS] [FIXED] - [Fabric] Fixes bundle url reset logic Pull Request resolved: #43680 Test Plan: bundle url set works. Reviewed By: philIip Differential Revision: D55427061 Pulled By: arushikesarwani94 fbshipit-source-id: 2b26b1f7c51281b7555a8621b97c067eadcf2db3
1 parent b1f1418 commit 860f673

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon

1 file changed

+1
-1
lines changed

packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ - (instancetype)initWithBundleURL:(NSURL *)bundleURL
107107
};
108108

109109
auto bundleURLSetter = ^(NSURL *bundleURL_) {
110-
[weakSelf _setBundleURL:bundleURL];
110+
[weakSelf _setBundleURL:bundleURL_];
111111
};
112112

113113
auto defaultBundleURLGetter = ^NSURL *()

0 commit comments

Comments
 (0)