Remove duplicate check if cookies are already present
This commit is contained in:
parent
1de5323696
commit
9620cf2051
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue