mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 11:17:25 +01:00
Show login errors
This commit is contained in:
parent
82f4e3157a
commit
2b63bae989
@ -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) }
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -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) }
|
||||
})
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user