Skip to content

Commit

Permalink
fix: remove fallback resource in ThreadManager.m (#1)
Browse files Browse the repository at this point in the history
fallbackResource no longer exists in RN 68
  • Loading branch information
matthewjablack authored Dec 13, 2022
1 parent e8a9d68 commit eda1bc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ios/ThreadManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ @implementation ThreadManager

int threadId = abs(arc4random());

NSURL *threadURL = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:name fallbackResource:name];
NSURL *threadURL = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:name];
NSLog(@"starting Thread %@", [threadURL absoluteString]);


Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "react-native-threads",
"version": "0.0.19",
"name": "@atomicfinance/react-native-threads",
"version": "0.0.20",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:joltup/react-native-threads.git"
"url": "[email protected]:atomicfinance/react-native-threads.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down

0 comments on commit eda1bc0

Please sign in to comment.