From d63b1240d75c2768c0d06a3e89ee0a9a9b257813 Mon Sep 17 00:00:00 2001 From: Samuel Hawksby-Robinson Date: Wed, 6 Sep 2023 08:24:40 +0100 Subject: [PATCH] Fix for Android error `route ip+net: netlinkrib: permission denied` (#17166) * status-go branch update https://github.com/status-im/status-go/compare/4cc53630...b9968a75 * comment start-searching-for-local-pairing-peers out * revert status-go-version.json --------- Co-authored-by: frank --- src/status_im/utils/universal_links/core.cljs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/status_im/utils/universal_links/core.cljs b/src/status_im/utils/universal_links/core.cljs index 31b119333f..24031297c1 100644 --- a/src/status_im/utils/universal_links/core.cljs +++ b/src/status_im/utils/universal_links/core.cljs @@ -211,8 +211,12 @@ (.then dispatch-url)) 200) (.addEventListener ^js react/linking "url" url-event-listener) - (native-module/start-searching-for-local-pairing-peers - #(log/info "[local-pairing] errors from local-pairing-preflight-outbound-check ->" %))) + ;;StartSearchForLocalPairingPeers() shouldn't be called ATM from the UI + ;;It can be called after the error "route ip+net: netlinkrib: permission denied" is fixed on status-go + ;;side + #_(native-module/start-searching-for-local-pairing-peers + #(log/info "[local-pairing] errors from local-pairing-preflight-outbound-check ->" %)) +) (defn finalize "Remove event listener for url"