Remove duplicate check if cookies are already present

This commit is contained in:
Stypox 2020-04-11 11:50:56 +02:00
parent e2cbf40957
commit b8efef7c7a
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23

View file

@ -206,7 +206,7 @@ public class ReCaptchaActivity extends AppCompatActivity {
Log.d(TAG, "handleCookies: cookies=" + (cookies == null ? "null" : cookies)); Log.d(TAG, "handleCookies: cookies=" + (cookies == null ? "null" : cookies));
} }
if (cookies == null || foundCookies.contains(cookies)) { if (cookies == null) {
return; return;
} }