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

reduce uses of Task.Run

This commit is contained in:
Luke Pulverenti 2013-04-15 15:09:27 -04:00
parent 6ef4f0e449
commit 549b78e51d

View file

@ -1,17 +1,6 @@
var WizardStartPage = {
gotoNextPage: function () {
ApiClient.getUsers().done(function (users) {
if (users.length > 1) {
Dashboard.navigate('wizardlibrary.html');
} else {
Dashboard.navigate('wizarduser.html');
}
});
Dashboard.navigate('wizarduser.html');
}
};