account : catch all exceptions

pull/653/merge
Varun Patil 2023-08-21 09:59:22 -07:00
parent 6f7e68ad17
commit ec8c125b0e
1 changed files with 2 additions and 1 deletions

View File

@ -150,7 +150,8 @@ import java.net.SocketTimeoutException
val response: Response
try {
response = OkHttpClient().newCall(request).execute()
} catch (e: SocketTimeoutException) {
} catch (e: Exception) {
Log.w(TAG, "checkCredentialsAndVersion: ", e)
return
}