Fix Kitsu toasting "Logged in" when there is an error (#4329)

(cherry picked from commit 2a5102a4572f5250c60e2e97cc5ff41cb7d65e17)
This commit is contained in:
Andreas 2021-01-22 00:05:22 +01:00 committed by Jobobby04
parent 003e916ab0
commit e0afe65096
2 changed files with 5 additions and 8 deletions

View File

@ -101,14 +101,10 @@ class Kitsu(private val context: Context, id: Int) : TrackService(id) {
}
override suspend fun login(username: String, password: String) {
try {
val token = api.login(username, password)
interceptor.newAuth(token)
val userId = api.getCurrentUser()
saveCredentials(username, userId)
} catch (e: Throwable) {
logout()
}
val token = api.login(username, password)
interceptor.newAuth(token)
val userId = api.getCurrentUser()
saveCredentials(username, userId)
}
override fun logout() {

View File

@ -48,6 +48,7 @@ class TrackLoginDialog(
dialog?.dismiss()
withUIContext { view?.context?.toast(R.string.login_success) }
} catch (e: Throwable) {
service.logout()
binding?.login?.progress = -1
binding?.login?.setText(R.string.unknown_error)
withUIContext { e.message?.let { view?.context?.toast(it) } }