You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
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: