mirror of
https://github.com/microg/android_packages_apps_GmsCore
synced 2026-08-06 14:26:05 -04:00
feat: add support for 256-65535 domain index range
This commit is contained in:
parent
92758893a8
commit
97c9927e92
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ private fun generateDomain(domainId: Int): String {
|
|||
if (domainId < 2) {
|
||||
return FIXED_SERVER_HOSTS[domainId]
|
||||
}
|
||||
require(domainId < 256) {
|
||||
require(domainId in 256..65535) {
|
||||
String.format(Locale.US, "This domainId: %d was an unrecognized assigned domain value.", domainId)
|
||||
}
|
||||
val buffer = ByteBuffer.allocate(31).apply {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue