NEW229980
101edu.co is blocking safari and WebKitView browsers
https://bugs.webkit.org/show_bug.cgi?id=229980
Summary 101edu.co is blocking safari and WebKitView browsers
karl
Reported 2021-09-06 20:41:27 PDT
Browser / Version: Safari 13.1 Operating System: Mac OS X 10.15.4 Tested Another Browser: Yes Safari Problem type: Site is not usable Description: Browser unsupported Steps to Reproduce: Steps to reproduce. 1. Go to https://app.101edu.co/lti?lti=true Expected: Access the site Actual: Got the following message "This browser is currently unsupported. Please use Chrome or Firefox for best results." Diagnosis: This is done by user agent detection. The trigger is here. ```js export default function SupportedBrowserWall(props) { if (isSupported()) { return props.children; } else { return renderUnsupportedView(); } } ``` with ```js function isSupported() { if (OS != 'web') { return true; } let agent = window.navigator.userAgent; if (agent.indexOf("Version") != -1 && agent.indexOf("Safari") != -1) { return false; } return true; } ``` Not sure what led them to block it. Initially reported by a user on the webcompat project https://github.com/webcompat/web-bugs/issues/84776
Attachments
rendering in safari (409.72 KB, image/png)
2025-01-19 18:18 PST, Karl Dubost
no flags
Kevin Neal
Comment 1 2021-09-09 14:31:54 PDT
Thank you for filing. The appropriate engineers have been copied.
Radar WebKit Bug Importer
Comment 2 2021-09-13 16:47:39 PDT
Karl Dubost
Comment 4 2025-01-19 18:18:08 PST
Created attachment 473950 [details] rendering in safari This is still happening in the latest version of STP 211. With a fake Chrome UA, the login window is shown.
Note You need to log in before you can comment on or make changes to this bug.