Bugfix FXIOS-14560 [Swift 6 Migration] [Reader Mode] Workaround for broken Reader Mode after Swift 6 is enabled #31516
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📜 Tickets
Jira ticket
Github issue
💡 Description
Workaround for the fact Reader Mode breaks once strict concurrency checking and/or Swift 6 is enabled.
We were getting a black screen when showing ReaderMode
Turns out we are getting a 401 in the JavaScript console, presumably from the GCDWebServer (in the Safari JavaScript console... see FXIOS-14565 for instructions on setting that up if you're curious). This only happens when building release builds (e.g. build FirefoxBeta).
@issammani realized we can just disable the basic auth (which isn't doing anything anyway for reader mode).
However, we should look toward actually fixing this tech debt this year (epic: FXIOS-14566). It's better to use the regular WebKit WKURLSchemeHandler and ditch GCDWebServers (old unsupported objective C library that's preconcurrency).
e.g. We can follow what Translations does:
https://github.com/mozilla-mobile/firefox-ios/blob/main/firefox-ios/Client/Frontend/Translations/SchemeHandler/TranslationsSchemeHandler.swift#L8-L40
📝 Checklist