Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed May 31, 2021
1 parent cc9e26a commit d305915
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import java.net.URISyntaxException
*/
class ProxyInstance(val profile: Profile, private val route: String = profile.route) {
init {
require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isEmpty())) {
require(profile.host.isNotEmpty() && (profile.method == "none" || profile.password.isNotEmpty())) {
app.getString(R.string.proxy_empty)
}
// check the crypto
Expand Down

0 comments on commit d305915

Please sign in to comment.