2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Use a smaller request code for WebAuthnFeature

We can't see the private API that we interact with on the OS, but after
some internal investigation it appears that there might be an upper
limit to the request code we can use.

For now, let's try a value similar to that use in the GVE code to see
our requests are failing because of that.
This commit is contained in:
Jonathan Almeida 2021-01-21 20:07:35 +04:00 committed by Jonathan Almeida
parent 73abe98ba7
commit c7483a0edb

View File

@ -56,6 +56,6 @@ class WebAuthnFeature(
}
companion object {
const val ACTIVITY_REQUEST_CODE = 1337
const val ACTIVITY_REQUEST_CODE = 10
}
}