We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87e9937 commit fa05d1bCopy full SHA for fa05d1b
live-view/live-view.js
@@ -839,7 +839,8 @@ async function renderLiveViewHTML(file) {
839
840
// if iOS version is lower than minimum
841
842
- const isSafariWithMac = navigator.userAgent.toLowerCase().indexOf('safari') != -1;
+ const isSafariWithMac = (navigator.userAgent.toLowerCase().includes('safari')
843
+ && !navigator.userAgent.toLowerCase().includes('chrome'));
844
845
if (isSafariWithMac) {
846
0 commit comments