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:
viown
2026-01-27 16:11:24 -05:00
committed by thornbill
parent 22d2a07678
commit 66df06ff18
@@ -16,7 +16,11 @@ function handleConnectionResult(page, result) {
break;
}
case ConnectionState.ServerSignIn:
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');