We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2394dbb commit 7a3c637Copy full SHA for 7a3c637
src/main/java/io/github/doocs/im/util/HttpUtil.java
@@ -126,7 +126,7 @@ public Response intercept(Chain chain) throws IOException {
126
}
127
try {
128
response = chain.proceed(request);
129
- if (response.isSuccessful()) {
+ if (response.isSuccessful() && !shouldRetry(response)) {
130
return response;
131
132
if (!shouldRetry(response)) {
0 commit comments