diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2026-06-25 00:42:31 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2026-06-25 00:42:31 -0400 |
| commit | 31070e8208e973728b4bfe470cbbd6ca1d14c048 (patch) | |
| tree | 20c82a7d1043a36747891dd91e35bd2f96de353a /Jellyfin.Server/ServerSetupApp/StartupActivity.cs | |
| parent | 2c98ad99db3b30f332a7a5a72c8d799207e952db (diff) | |
Add a cancelable redirect handoff and drop the transitional migration status
When the server finishes starting, show "Jellyfin started successfully" with a
5-second "Redirecting in N…" countdown and a Cancel button instead of reloading
immediately. Cancel stops the countdown and the background refresh so the
startup output can be reviewed, and offers a "Continue to Jellyfin" button to
reload manually. The buttons use the web client's emby-button styling.
Also drop the transitional "Applying migrations" activity: it only showed
briefly while the pending migration set was read, or for the whole step when
nothing was pending, so startup now goes from "Preparing migrations" straight
into "Running migration X of Y".
Diffstat (limited to 'Jellyfin.Server/ServerSetupApp/StartupActivity.cs')
| -rw-r--r-- | Jellyfin.Server/ServerSetupApp/StartupActivity.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Jellyfin.Server/ServerSetupApp/StartupActivity.cs b/Jellyfin.Server/ServerSetupApp/StartupActivity.cs index 5baaf1d40a..888cc617d4 100644 --- a/Jellyfin.Server/ServerSetupApp/StartupActivity.cs +++ b/Jellyfin.Server/ServerSetupApp/StartupActivity.cs @@ -21,9 +21,6 @@ public static class StartupActivity /// <summary>Preparing the system for migrations (e.g. taking safety backups).</summary> public const string PreparingMigrations = "Preparing migrations"; - /// <summary>Applying database/system migrations without a known count.</summary> - public const string ApplyingMigrations = "Applying migrations"; - /// <summary>Restoring from a backup.</summary> public const string RestoringBackup = "Restoring backup"; |
