Skip to content

Commit d305915

Browse files
committed
Fix typo
1 parent cc9e26a commit d305915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import java.net.URISyntaxException
4141
*/
4242
class ProxyInstance(val profile: Profile, private val route: String = profile.route) {
4343
init {
44-
require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isEmpty())) {
44+
require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isNotEmpty())) {
4545
app.getString(R.string.proxy_empty)
4646
}
4747
// check the crypto

0 commit comments

Comments
 (0)