1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

detect opera

This commit is contained in:
Luke Pulverenti 2013-07-28 10:06:39 -04:00
parent d9147f8aa8
commit 4dcf71dcec
2 changed files with 2 additions and 2 deletions

View file

@ -3512,7 +3512,7 @@ MediaBrowser.SHA1 = function (msg) {
var browser = match[1] || "";
if (ua.indexOf("like gecko") != -1 && ua.indexOf('webkit') == -1)
if (ua.indexOf("like gecko") != -1 && ua.indexOf('webkit') == -1 && ua.indexOf('opera') == -1)
{
browser = "msie";
}