Skip to content
Snippets Groups Projects
Commit 81dea70e authored by Ryan Harg's avatar Ryan Harg
Browse files

Merge branch 'bugfix/92-remove-hostname-trailing-slash' into 'develop'

#92: Remove trailing slash from hostname

Closes #92

See merge request !102
parents 6be60afd 9d857de9
Branches
No related tags found
1 merge request!102#92: Remove trailing slash from hostname
Pipeline #16359 passed
......@@ -69,7 +69,7 @@ class LoginActivity : AppCompatActivity() {
super.onResume()
with(binding) {
login.setOnClickListener {
var hostname = hostname.text.toString().trim()
var hostname = hostname.text.toString().trim().trim('/')
try {
validateHostname(hostname, cleartext.isChecked)?.let {
......
Remove trailing slash from hostname (#92)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment