| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if ([self isIncognitoForced]) {This logic is incorrect. If `inIncognito` is `YES` and `isIncognitoForced` is `YES`, this method will now return early and fail to open the URLs.
The check for `isIncognitoForced` should only apply when `inIncognito` is `NO`.
The comment above this method correctly describes the intent: \"if `inIncognito` is NO but incognito is forced, do nothing.\" but the implementation checks it regardless of the value of `inIncognito`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
This logic is incorrect. If `inIncognito` is `YES` and `isIncognitoForced` is `YES`, this method will now return early and fail to open the URLs.
The check for `isIncognitoForced` should only apply when `inIncognito` is `NO`.
The comment above this method correctly describes the intent: \"if `inIncognito` is NO but incognito is forced, do nothing.\" but the implementation checks it regardless of the value of `inIncognito`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
16 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
[iOS]Remove code repetition
Each time the method openAllURLs:inIncognito:newTab: was called, the
code checked first whether this could be executed. This Change
simplifies slightly the code, and in particular reduces the size of
blocks.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |