aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/ServerSetupApp/SetupServer.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2025-11-25 18:30:27 +0100
committerGitHub <noreply@github.com>2025-11-25 18:30:27 +0100
commit3b5bdc6bc2b778e02af1f0c246976012329d25e7 (patch)
treeda99b87315b2aee7e1d550587ab47565b32efab6 /Jellyfin.Server/ServerSetupApp/SetupServer.cs
parentb05e91dba1deb3483584c0dbc3955812d0fbf401 (diff)
parent81f1cc78b243f84a1d6ae15cbd43b8540c450fed (diff)
Merge pull request #15246 from JPVenson/feature/AddVersionDisplayStartupUi
Add version to StartupUI
Diffstat (limited to 'Jellyfin.Server/ServerSetupApp/SetupServer.cs')
-rw-r--r--Jellyfin.Server/ServerSetupApp/SetupServer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Server/ServerSetupApp/SetupServer.cs b/Jellyfin.Server/ServerSetupApp/SetupServer.cs
index 00d9fcc02..4340969a3 100644
--- a/Jellyfin.Server/ServerSetupApp/SetupServer.cs
+++ b/Jellyfin.Server/ServerSetupApp/SetupServer.cs
@@ -249,6 +249,7 @@ public sealed class SetupServer : IDisposable
{
{ "isInReportingMode", _isUnhealthy },
{ "retryValue", retryAfterValue },
+ { "version", typeof(Emby.Server.Implementations.ApplicationHost).Assembly.GetName().Version! },
{ "logs", startupLogEntries },
{ "networkManagerReady", networkManager is not null },
{ "localNetworkRequest", networkManager is not null && context.Connection.RemoteIpAddress is not null && networkManager.IsInLocalNetwork(context.Connection.RemoteIpAddress) }