mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Move the ProductName to the public endpoint
Moves the ProductName field over from the private system/info point to the public one, for easier identification
This commit is contained in:
parent
b2f94c0e40
commit
34ab99caf1
1 changed files with 1 additions and 1 deletions
|
@ -1425,7 +1425,6 @@ namespace Emby.Server.Implementations
|
|||
HasPendingRestart = HasPendingRestart,
|
||||
IsShuttingDown = IsShuttingDown,
|
||||
Version = ApplicationVersion,
|
||||
ProductName = ApplicationProductName,
|
||||
WebSocketPortNumber = HttpPort,
|
||||
CompletedInstallations = InstallationManager.CompletedInstallations.ToArray(),
|
||||
Id = SystemId,
|
||||
|
@ -1482,6 +1481,7 @@ namespace Emby.Server.Implementations
|
|||
return new PublicSystemInfo
|
||||
{
|
||||
Version = ApplicationVersion,
|
||||
ProductName = ApplicationProductName,
|
||||
Id = SystemId,
|
||||
OperatingSystem = OperatingSystem.Id.ToString(),
|
||||
WanAddress = wanAddress,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue