Backport pull request #7504 from jellyfin-web/release-10.11.z
Navigate to wizard if not completed on server add Original-merge: 0682a1aa5509e4a00aed3815e3c43e8a57de342a Merged-by: thornbill <thornbill@users.noreply.github.com> Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
@@ -16,7 +16,11 @@ function handleConnectionResult(page, result) {
|
||||
break;
|
||||
}
|
||||
case ConnectionState.ServerSignIn:
|
||||
Dashboard.navigate('login?serverid=' + result.Servers[0].Id, false, 'none');
|
||||
if (result.SystemInfo.StartupWizardCompleted) {
|
||||
Dashboard.navigate('login?serverid=' + result.Servers[0].Id, false, 'none');
|
||||
} else {
|
||||
Dashboard.navigate('/wizard/start');
|
||||
}
|
||||
break;
|
||||
case ConnectionState.ServerSelection:
|
||||
Dashboard.navigate('selectserver', false, 'none');
|
||||
|
||||
Reference in New Issue
Block a user