mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update video probing
This commit is contained in:
parent
8a32cc215f
commit
b70aa4926c
25 changed files with 407 additions and 355 deletions
|
@ -94,6 +94,12 @@ var Dashboard = {
|
|||
|
||||
var url = data.url.toLowerCase();
|
||||
|
||||
// Don't bounce to login on failures to contact our external servers
|
||||
if (url.indexOf('emby.media') != -1) {
|
||||
Dashboard.hideLoadingMsg();
|
||||
return;
|
||||
}
|
||||
|
||||
// Bounce to the login screen, but not if a password entry fails, obviously
|
||||
if (url.indexOf('/password') == -1 &&
|
||||
url.indexOf('/authenticate') == -1 &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue