Browse Source

Show login errors

len 8 years ago
parent
commit
2b63bae989

+ 2 - 1
app/src/main/java/eu/kanade/tachiyomi/widget/preference/SourceLoginDialog.kt

@@ -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) }
                     })
         }
     }

+ 2 - 1
app/src/main/java/eu/kanade/tachiyomi/widget/preference/TrackLoginDialog.kt

@@ -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) }
                     })
 
         }