Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
5.0.3
-
None
Description
Code at Line 656 adding LAST using addFirst. It should be addLast.
if (requestInterceptors != null) { for (final RequestInterceptorEntry entry: requestInterceptors) { if (entry.postion == RequestInterceptorEntry.Postion.LAST) { b.addFirst(entry.interceptor); } } } if (responseInterceptors != null) { for (final ResponseInterceptorEntry entry: responseInterceptors) { if (entry.postion == ResponseInterceptorEntry.Postion.LAST) { b.addLast(entry.interceptor); } } }