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

fix directory browser in startup wizard

This commit is contained in:
Luke Pulverenti 2015-09-05 13:19:13 -04:00
parent a43b91f49c
commit bc454ba305

View file

@ -78,7 +78,7 @@
if (systemInfo) {
deferred.resolveWith(null, [systemInfo]);
} else {
ApiClient.getSystemInfo().done(function (info) {
ApiClient.getPublicSystemInfo().done(function (info) {
systemInfo = info;
deferred.resolveWith(null, [systemInfo]);
});