-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
incognito mode is broken swift #320
Comments
Could you explain it more? What bug? Which part of the code did you change? Thanks! |
New version |
This was referenced Jul 6, 2020
Closed
Closed
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug and a minimal reproduction of the issue. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
incognito mode sets
This feature from apple allows you to run multiple webviews independent of shared cookies that only exist in memory.
However, this feature is completely broken due to a bug with swift.
When you initalize a webview with no websiteDataStore property, if you try to change it to noPersistent later it won't work.
The way this codebase works is when InAppWebview is created, init() creates a webview with no default options, thus doing exactly as the bug suggests.
I have modified the codebase and almost got it working correctly for myself, but there is another issue such as the actual options are nil within init so you kind of have to just set one and hope the other persists if you want to change it later.
The text was updated successfully, but these errors were encountered: