Skip to content

Commit 48bd9b5

Browse files
4060: Fix deeplinks on iOS
1 parent 35c8e99 commit 48bd9b5

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

native/ios/Integreat/AppDelegate.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,17 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
4141
) -> Bool {
4242
return RCTLinkingManager.application(app, open: url, options: options)
4343
}
44+
45+
func application(
46+
_ application: UIApplication,
47+
continue userActivity: NSUserActivity,
48+
restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
49+
return RCTLinkingManager.application(
50+
application,
51+
continue: userActivity,
52+
restorationHandler: restorationHandler
53+
)
54+
}
4455
}
4556

4657
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
issue_key: 4060
2+
show_in_stores: true
3+
platforms:
4+
- ios
5+
en: Deeplinks are now opened correctly in the app again.
6+
de: Deeplinks werden nun wieder korrekt in der App geöffnet.

0 commit comments

Comments
 (0)