mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
fix lint & make regex more robust
This commit is contained in:
parent
f2a649e611
commit
729806b9b4
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ limitations under the License.
|
|||
|
||||
function safariVersionCheck(ua) {
|
||||
try {
|
||||
const safariVersionMatch = ua.match(/Mac OS X ([\d|_]+).*Version\/([\d|\.]+) Safari/);
|
||||
const safariVersionMatch = ua.match(/Mac OS X ([\d|_]+).*Version\/([\d|.]+).*Safari/);
|
||||
if (safariVersionMatch) {
|
||||
const macOSVersionStr = safariVersionMatch[1];
|
||||
const safariVersionStr = safariVersionMatch[2];
|
||||
|
|
Loading…
Reference in a new issue