We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 046c00b commit db2845cCopy full SHA for db2845c
1 file changed
play-services-fido/core/src/main/kotlin/org/microg/gms/fido/core/hybrid/extensions.kt
@@ -47,7 +47,7 @@ private fun generateDomain(domainId: Int): String {
47
if (domainId < 2) {
48
return FIXED_SERVER_HOSTS[domainId]
49
}
50
- require(domainId < 256) {
+ require(domainId in 256..65535) {
51
String.format(Locale.US, "This domainId: %d was an unrecognized assigned domain value.", domainId)
52
53
val buffer = ByteBuffer.allocate(31).apply {
0 commit comments