mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-11-03 08:13:55 +01:00
Merge f96a5edbb9 into 78d29bcf20
This commit is contained in:
commit
2e4f825240
1 changed files with 1 additions and 3 deletions
|
|
@ -95,9 +95,7 @@ public final class OkHttpConnectionFactory {
|
|||
if (rsp.isSuccessful()) {
|
||||
try (final ResponseBody responseBody = rsp.peekBody(ERRORS_PREFIX.length())) {
|
||||
if (ERRORS_PREFIX.equals(responseBody.string())) {
|
||||
try (final ResponseBody body = rsp.body()) {
|
||||
throw new IOException(body.string());
|
||||
}
|
||||
throw new IOException(responseBody.string());
|
||||
}
|
||||
} catch (final IOException e) {
|
||||
// Log the error as debug (and therefore, "expected") or at error level
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue