Hi,
Chrome Browser has a feature called “chrome preload pages for faster browsing" - enabled by default.
Create a Bookmark in your bookmark bar to access the login page of your apex app (or the app builder).
Login into your app.
Now hover over the bookmark. Chrome preloads the Page and the APEX session in your browser breaks.
Actually this does not affect Bookmaks in Subfolders and it looks like some similar bug happens in Safari Browser (not yet reproducable)
There is a possible workaround: If you use a reverse proxy like nginx you can block this preload requests, for example:
if ($http_purpose = "prefetch") {
return 403;
}
if ($http_sec_purpose = "prefetch;prerender") {
return 403;
}
Maybe there is a way that APEX can block or ignore these requests directly?