Skip to content

Commit

Permalink
Merge pull request #37 from dokeraj/verbose-error-login-msg
Browse files Browse the repository at this point in the history
verbose error msg
  • Loading branch information
dokeraj authored Jan 2, 2022
2 parents b8dae1e + 182fe26 commit 1ebc20b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId "com.dokeraj.androtainer"
minSdkVersion 29
targetSdkVersion 30
versionCode 16
versionName "1.9"
versionCode 17
versionName "2.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/dokeraj/androtainer/HomeFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class HomeFragment : Fragment(R.layout.fragment_home) {
}

override fun onFailure(call: retrofit2.Call<Jwt?>, t: Throwable) {
onLoginError(btnLoginState, "Server not permitting communication! Check URL.")
onLoginError(btnLoginState, "Server not permitting communication! ${t.message}")
}
})
}
Expand Down

0 comments on commit 1ebc20b

Please sign in to comment.