universal link fix
fix for universal link not opening properly when app was closed with back button, returning nil instead of the url Signed-off-by: yenda <eric@status.im>
This commit is contained in:
parent
5608d649b0
commit
35dd4b015b
|
@ -183,9 +183,13 @@
|
||||||
and handles incoming url if the app has been started by clicking on a link"
|
and handles incoming url if the app has been started by clicking on a link"
|
||||||
[]
|
[]
|
||||||
(log/debug "universal-links: initializing")
|
(log/debug "universal-links: initializing")
|
||||||
(.. react/linking
|
;;NOTE: https://github.com/facebook/react-native/issues/15961
|
||||||
(getInitialURL)
|
;; workaround for getInitialURL returning null when opening the
|
||||||
(then dispatch-url))
|
;; app from a universal link after closing it with the back button
|
||||||
|
(js/setTimeout #(.. react/linking
|
||||||
|
(getInitialURL)
|
||||||
|
(then dispatch-url))
|
||||||
|
200)
|
||||||
(.. react/linking
|
(.. react/linking
|
||||||
(addEventListener "url" url-event-listener)))
|
(addEventListener "url" url-event-listener)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue