mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed firefox detection
This commit is contained in:
parent
f255c24c8b
commit
46fb845918
2 changed files with 4 additions and 4 deletions
|
@ -74,12 +74,12 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
|
|||
else if ($.browser.msie) {
|
||||
name = "Internet Explorer";
|
||||
}
|
||||
else if ($.browser.firefox) {
|
||||
name = "Firefox";
|
||||
}
|
||||
else if ($.browser.opera) {
|
||||
name = "Opera";
|
||||
}
|
||||
else if ($.browser.firefox || $.browser.mozilla) {
|
||||
name = "Firefox";
|
||||
}
|
||||
|
||||
if (name)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue