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

fix live tv in startup wizard

This commit is contained in:
Luke Pulverenti 2015-10-27 14:21:30 -04:00
parent dd83646325
commit 4816128a99

View file

@ -18,7 +18,7 @@
} }
} }
var url = 'tvproviders/' + type.toLowerCase() + '.js'; var url = 'components/tvproviders/' + type.toLowerCase() + '.js';
require([url], function (factory) { require([url], function (factory) {
@ -44,7 +44,7 @@
ApiClient.ajax({ ApiClient.ajax({
type: 'GET', type: 'GET',
url: 'tvproviders/' + type + '.template.html' url: 'components/tvproviders/' + type + '.template.html'
}).done(function (html) { }).done(function (html) {