Skip to content

Commit

Permalink
Home component: Log generic error
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroBrine1st committed Mar 25, 2024
1 parent cf0f736 commit e48084a
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,16 @@ class HomeComponent(
LoginState.IOError
}

else -> LoginState.UnknownError
else -> {
Log.e(
TAG,
"Unknown error occurred while checking authorization data",
it
)
LoginState.UnknownError
}
}
}.getOrThrow()


}
}

Expand Down

0 comments on commit e48084a

Please sign in to comment.