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

fix redirect issue on video player

This commit is contained in:
dkanada 2020-06-26 16:41:19 +09:00 committed by GitHub
parent fda99dd4ae
commit 29eb217a0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1341,7 +1341,7 @@ define(['playbackManager', 'dom', 'inputManager', 'datetime', 'itemHelper', 'med
}); });
} catch (e) { } catch (e) {
require(['appRouter'], function(appRouter) { require(['appRouter'], function(appRouter) {
appRouter.showDirect('/'); window.location.href = 'index.html';
}); });
} }
}); });