Skip to content

Commit

Permalink
Merge pull request #4156 from TeamAmaze/fix-ci
Browse files Browse the repository at this point in the history
Fix Failing CI
  • Loading branch information
VishalNehra authored Apr 20, 2024
2 parents e3ccaa5 + 1edb20b commit c6661af
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -812,13 +812,14 @@ class SftpConnectDialog : DialogFragment() {
prefix = getProtocolPrefixFromDropdownSelection(),
connectionName = binding.connectionET.text.toString(),
hostname = binding.ipET.text.toString(),
port = binding.portET.text.toString().let {
if (it.isEmpty() || it.isBlank()) {
SSH_DEFAULT_PORT
} else {
it.toInt()
}
},
port =
binding.portET.text.toString().let {
if (it.isEmpty() || it.isBlank()) {
SSH_DEFAULT_PORT
} else {
it.toInt()
}
},
defaultPath = binding.defaultPathET.text.toString(),
username = binding.usernameET.text.toString().urlEncoded(),
password =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import kotlin.random.Random
Build.VERSION_CODES.KITKAT,
Build.VERSION_CODES.N,
Build.VERSION_CODES.P,
Build.VERSION_CODES.R
Build.VERSION_CODES.R,
],
shadows = [
ShadowMultiDex::class,
Expand Down

0 comments on commit c6661af

Please sign in to comment.