Based on a false-positive during local testing, the reconnect bug seemed to be fixed for both web/android.
android was not correctly handled...
the request URI (and how the request is sent) for a sign transaction when deep linking is a bit different than on web environment
there is a requestId in the URI which is different for every new request done on an existing connection.
this makes the original check we run on a connection request not valid because the incoming link is always different then what we cache in reference.
This PR is for adding an additional check for android-native based on sessionTopic
About # (link your issue here)
4035
How Has This Been Tested?
Please describe the tests that you ran to verify your changes.
Checklist:
[ ] PR title matches follow: (Feature|Bug|Chore) Task Name
[ ] My code follows the style guidelines of this project
[ ] I have followed all the instructions described in the initial task (check Definitions of Done)
[ ] I have performed a self-review of my own code
[ ] My changes generate no new warnings
[ ] I have added tests that prove my fix is effective or that my feature works
[ ] New and existing unit tests pass locally with my changes
[ ] I have added reference to a related issue in the repository
[ ] I have added a detailed description of the changes proposed in the pull request. I am as descriptive as possible, assisting reviewers as much as possible.
[ ] I have added screenshots related to my pull request (for frontend tasks)
[ ] I have pasted a gif showing the feature.
[ ] @mentions of the person or team responsible for reviewing proposed changes
Description
Based on a false-positive during local testing, the reconnect bug seemed to be fixed for both web/android. android was not correctly handled...
the request URI (and how the request is sent) for a sign transaction when deep linking is a bit different than on web environment there is a requestId in the URI which is different for every new request done on an existing connection.
this makes the original check we run on a connection request not valid because the incoming link is always different then what we cache in reference.
This PR is for adding an additional check for android-native based on sessionTopic
About # (link your issue here)
4035
How Has This Been Tested?
Please describe the tests that you ran to verify your changes.
Checklist: