ignore case for the key "location" in headers

This commit is contained in:
Ryan ZHAO 2020-11-16 17:00:00 +11:00
parent 798d7e227f
commit 9f495b1ab8
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class ContentProxySafetyInterceptor implements Interceptor {
Response response = chain.proceed(chain.request());
if (response.isRedirect()) {
if (isWhitelisted(response.header("Location"))) {
if (isWhitelisted(response.header("location")) || isWhitelisted(response.header("Location"))) {
return response;
} else {
Log.w(TAG, "Tried to redirect to a non-whitelisted domain!");