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 cc9e26a commit d305915Copy full SHA for d305915
1 file changed
core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt
@@ -41,7 +41,7 @@ import java.net.URISyntaxException
41
*/
42
class ProxyInstance(val profile: Profile, private val route: String = profile.route) {
43
init {
44
- require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isEmpty())) {
+ require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isNotEmpty())) {
45
app.getString(R.string.proxy_empty)
46
}
47
// check the crypto
0 commit comments