mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Don't unnecessarily wrap IOExceptions in UncaughtExceptionInterceptor
This commit is contained in:
parent
be54b8862e
commit
1814b3b22c
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ class UncaughtExceptionInterceptor : Interceptor {
|
|||
return try {
|
||||
chain.proceed(chain.request())
|
||||
} catch (e: Exception) {
|
||||
throw IOException(e)
|
||||
if (e is IOException) {
|
||||
throw e
|
||||
} else {
|
||||
throw IOException(e)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue