Show login errors

This commit is contained in:
len 2016-12-22 22:11:17 +01:00
parent 82f4e3157a
commit 2b63bae989
2 changed files with 4 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class SourceLoginDialog : LoginDialogPreference() {
requestSubscription?.unsubscribe()
v?.apply {
if (username.text.length == 0 || password.text.length == 0)
if (username.text.isEmpty() || password.text.isEmpty())
return
login.progress = 1
@ -69,6 +69,7 @@ class SourceLoginDialog : LoginDialogPreference() {
}, { error ->
login.progress = -1
login.setText(R.string.unknown_error)
error.message?.let { context.toast(it) }
})
}
}

View File

@ -45,7 +45,7 @@ class TrackLoginDialog : LoginDialogPreference() {
requestSubscription?.unsubscribe()
v?.apply {
if (username.text.length == 0 || password.text.length == 0)
if (username.text.isEmpty() || password.text.isEmpty())
return
login.progress = 1
@ -61,6 +61,7 @@ class TrackLoginDialog : LoginDialogPreference() {
}, { error ->
login.progress = -1
login.setText(R.string.unknown_error)
error.message?.let { context.toast(it) }
})
}