mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
fix directory browser in startup wizard
This commit is contained in:
parent
890510346a
commit
16e4d4599a
@ -178,7 +178,8 @@ namespace MediaBrowser.Api.System
|
||||
ServerName = result.ServerName,
|
||||
Version = result.Version,
|
||||
LocalAddress = result.LocalAddress,
|
||||
WanAddress = result.WanAddress
|
||||
WanAddress = result.WanAddress,
|
||||
OperatingSystem = result.OperatingSystem
|
||||
};
|
||||
|
||||
return ToOptimizedResult(publicInfo);
|
||||
|
@ -26,6 +26,12 @@ namespace MediaBrowser.Model.System
|
||||
/// <value>The version.</value>
|
||||
public string Version { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the operating sytem.
|
||||
/// </summary>
|
||||
/// <value>The operating sytem.</value>
|
||||
public string OperatingSystem { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the id.
|
||||
/// </summary>
|
||||
|
@ -8,11 +8,6 @@ namespace MediaBrowser.Model.System
|
||||
/// </summary>
|
||||
public class SystemInfo : PublicSystemInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the operating sytem.
|
||||
/// </summary>
|
||||
/// <value>The operating sytem.</value>
|
||||
public string OperatingSystem { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the display name of the operating system.
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user