Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed Jan 4, 2023
1 parent be348f5 commit 96d8d94
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ class MainActivity : AppCompatActivity() {
}

override fun onException(e: Exception) {
Log.e(Constants.TAG, e.message)
e.message?.let {
Log.e(Constants.TAG, it)
}
}
})

Expand All @@ -62,7 +64,9 @@ class MainActivity : AppCompatActivity() {
}

override fun onException(e: Exception) {
Log.e(Constants.TAG, e.message)
e.message?.let {
Log.e(Constants.TAG, it)
}
}
})

Expand All @@ -85,7 +89,9 @@ class MainActivity : AppCompatActivity() {
}

override fun onException(e: Exception) {
Log.e(Constants.TAG, e.message)
e.message?.let {
Log.e(Constants.TAG, it)
}
isDownload = false
binding.tvResponse.text = e.message
}
Expand Down

0 comments on commit 96d8d94

Please sign in to comment.