Prepare for release 0.5.9 (#68)

Updated the yggdrasil-go submodule. Fixed #64, updated some deps.
This commit is contained in:
Revertron 2024-10-23 18:10:01 +02:00 committed by GitHub
parent 34756b2193
commit cdc12a8e7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 22 additions and 12 deletions

View file

@ -68,6 +68,7 @@ class MainActivity : AppCompatActivity() {
startVpnActivity.launch(vpnIntent)
} else {
start()
enabledSwitch.isEnabled = false
}
}
false -> {
@ -181,6 +182,9 @@ class MainActivity : AppCompatActivity() {
else -> getString(R.string.main_many_peers, count)
}
}
if (!enabledSwitch.isEnabled) {
enabledSwitch.isEnabled = true
}
}
}
}