Skip to content

Commit 7679b95

Browse files
fix: add missing RCTLinkingManager fallback in RN 0.77+ setup and example app (#1115)
1 parent 94f7c87 commit 7679b95

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-native-app-auth': patch
3+
---
4+
5+
Add missing RCTLinkingManager fallback for non-auth urls in iOS AppDelegate setup docs and example

docs/docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate,
183183
return true
184184
}
185185
}
186-
return false
186+
return RCTLinkingManager.application(app, open: url, options: options)
187187
}
188188
}
189189
```

examples/demo/ios/Example/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate,
5353
return true
5454
}
5555
}
56-
return false
56+
return RCTLinkingManager.application(app, open: url, options: options)
5757
}
5858

5959
func application(

0 commit comments

Comments
 (0)